使用属性文件创建 jsp 表

发布于 2024-11-14 13:42:37 字数 554 浏览 3 评论 0原文

从属性文件创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸵鸟症 2024-11-21 13:42:37

您应该使用 java.util.Properties 而不是 java.util.ResourceBundleResourceBundle 具有完全不同的用途,并且不应滥用它来提供“简单的方法”来加载属性,因为它默认从类路径查找资源。

servlet 加载并为 JSP 做好准备。

Properties properties = new Properties();
properties.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("/filename.properties"));
request.setAttribute("properties", properties);
request.getRequestDispatcher("/WEB-INF/properties.jsp").forward(request, response);

由于 Properties 实现了 java.util.Map,因此您只需使用 JSTL 即可对其进行迭代。每次迭代都会给出一个 Map.Entry 后面又具有 getKey()getValue() 方法。

<table>
    <c:forEach items="${properties}" var="property">
        <tr>
            <td>${property.key}</td>
            <td>${property.value}</td>
        </tr>
    </c:forEach>
</table>

最后通过 URL 调用 servlet 以使其显示。

请注意,ResourceBundle 未实现 java.util.Map

You should be using java.util.Properties instead of java.util.ResourceBundle. The ResourceBundle 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.

Properties properties = new Properties();
properties.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("/filename.properties"));
request.setAttribute("properties", properties);
request.getRequestDispatcher("/WEB-INF/properties.jsp").forward(request, response);

Because Properties implements java.util.Map, you can just use JSTL <c:forEach> to iterate over it. Every iteration gives a Map.Entry back which in turn has getKey() and getValue() methods.

<table>
    <c:forEach items="${properties}" var="property">
        <tr>
            <td>${property.key}</td>
            <td>${property.value}</td>
        </tr>
    </c:forEach>
</table>

Finally invoke the servlet by its URL to get it to display.

Please note that ResourceBundle doesn't implement java.util.Map!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文