?? showbook.jsp.svn-base
字號:
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ page import="java.util.*,com.opensymphony.xwork2.util.*" %>
<html>
<head>
<title>作者張濤的圖書</title>
</head>
<body>
<table border="1" width="360">
<caption>
作者張濤的圖書
</caption>
<%
ValueStack vs = (ValueStack) request
.getAttribute("struts.valueStack");
String[] books = (String[]) vs.findValue("books");
for (String book : books) {
%>
<tr>
<td>
書名:
</td>
<td><%=book%></td>
</tr>
<%
}
%>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -