showalbum.jsp
来自「本段代码实现图片的上传功能」· JSP 代码 · 共 25 行
JSP
25 行
<%
String one=(String)session.getAttribute("1");
if(one==null)one="one.png";
String two=(String)session.getAttribute("2");
if(two==null)two="two.png";
String three=(String)session.getAttribute("3");
if(three==null)three="three.png";
String four=(String)session.getAttribute("4");
if(four==null)four="four.png";
String five=(String)session.getAttribute("5");
if(five==null)five="five.png";
%>
<html>
<body>
<table>
<tr><td><img src="<%=one%>"><td> <td><img src="<%=two%>">
<tr><td> <td><img src="<%=three%>"><td>
<tr><td><img src="<%=four%>"><td> <td><img src="<%=five%>">
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?