📄 photosingle.jsp
字号:
<%@ page language="java" contentType="text/html; charset=gb2312"%>
<%@ page import="com.yxq.valuebean.PhotoBean" %>
<html>
<head><title>博客-查看相片</title></head>
<body>
<%
PhotoBean single=(PhotoBean)request.getAttribute("photoSingle");
if(single==null)
out.print("查看图片失败!");
else{
%>
<img src="<%=single.getPhotoAddr()%>" >
<% } %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -