使用属性文件创建 jsp 表
从属性文件创建 jsp 表(键,值)的最佳方法是什么?
现在我正在使用 scriptlet 执行此操作......
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 来做到这一点
What is the best possible way to create a jsp table(key,value) from a properties file.
Right now I am doing this using scriptlets.....
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>
NOTE: Dont worry about syntax this is not complete code.
How can I do this using EL and jstl
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
java.util.Properties
而不是java.util.ResourceBundle
。ResourceBundle
具有完全不同的用途,并且不应滥用它来提供“简单的方法”来加载属性,因为它默认从类路径查找资源。让 servlet 加载并为 JSP 做好准备。
由于
Properties
实现了java.util.Map
,因此您只需使用 JSTL
即可对其进行迭代。每次迭代都会给出一个Map.Entry
后面又具有getKey()
和getValue()
方法。最后通过 URL 调用 servlet 以使其显示。
请注意,
ResourceBundle
未实现java.util.Map
!You should be using
java.util.Properties
instead ofjava.util.ResourceBundle
. TheResourceBundle
serves an entirely different purpose and it should not be abused to have "an easy way" to load properties since it by default lookups resources from the classpath.Let a servlet load and prepare it for JSP.
Because
Properties
implementsjava.util.Map
, you can just use JSTL<c:forEach>
to iterate over it. Every iteration gives aMap.Entry
back which in turn hasgetKey()
andgetValue()
methods.Finally invoke the servlet by its URL to get it to display.
Please note that
ResourceBundle
doesn't implementjava.util.Map
!