1
從屬性文件創建jsp表(鍵,值)的最佳方式是什麼?使用屬性文件創建jsp表
現在我做這個使用小腳本.....
ResourceBundle statusCodes = ResourceBundle.getBundle("statuscode");
Enumeration statusKeys = statusCodes.getKeys();
<%
while (statusKeys.hasMoreElements()) {
String key = (String) statusKeys.nextElement();
String value = statusCodes.getString(key);
%>
<tr>
<td><%=key%></td>
<td><%=value%></td>
</tr>
注:有關語法別擔心,這不是完整的代碼。
我怎樣才能做到這一點使用EL和JSTL
@BaluC - 謝謝! – user620339 2011-06-07 13:48:07
不客氣。 – BalusC 2011-06-07 13:49:56