⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showalbum.jsp

📁 本段代码实现图片的上传功能
💻 JSP
字号:
<%
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>&nbsp;<td><img src="<%=two%>">
<tr><td>&nbsp;<td><img src="<%=three%>"><td>&nbsp;
<tr><td><img src="<%=four%>"><td>&nbsp;<td><img src="<%=five%>">
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -