解析私有文件夹(WEB-INf)中的xml

发布于 2024-11-15 13:18:27 字数 158 浏览 0 评论 0原文

我想解析xml。我使用了 jQuery ajax。但它的问题是,正如有人在我的另一篇文章中建议我的那样,我的 xml 位于 WEB-INF 中,默认情况下是私有的。所以我无法通过ajax解析它。那么请建议我使用其他方法来解析 WEB-INf 中的 xml。我需要在 javascript 标签中解析它。

I want to parse xml. I used jQuery ajax for it. But the problem with it as someone suggest me in my other post is my xml is in WEB-INF which is by default private. So I can not parse it through ajax. Then please suggest me some other way to parse my xml which is in WEB-INf. I need to parse it in javascript tag.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

遮了一弯 2024-11-22 13:18:27

您可以创建一个访问该 XML 并打印其内容的 Servlet。然后,您可以从 javascript 文件调用该 servlet 并对其进行处理。

如果您必须访问该 xml 文件,那么 WEB-INF 文件夹可能不是该文件的最佳位置。

You can make a servlet that accesses to that XML and prints out its content. Then, you can invoke that servlet from your javascript file and process it.

If you have to reach that xml file, perhaps the WEB-INF folder is not the best place for that file.

无妨# 2024-11-22 13:18:27

这是一个肮脏的解决方案,但它有效

<%@ page contentType="text/xml"%>
<%
    java.io.File f = new java.io.File(getServletContext().getRealPath("/WEB-INF/web.xml")); //your XML file HERE
    char[] c = new char[(int)f.length()];
    java.io.FileReader fr = new java.io.FileReader(f);
    int i = 0;
    int count = 0;
    while((i = fr.read()) != -1){
        c[count++] = (char)i;
    }

    out.print(c);
%>

This is a dirty solution, but it works

<%@ page contentType="text/xml"%>
<%
    java.io.File f = new java.io.File(getServletContext().getRealPath("/WEB-INF/web.xml")); //your XML file HERE
    char[] c = new char[(int)f.length()];
    java.io.FileReader fr = new java.io.FileReader(f);
    int i = 0;
    int count = 0;
    while((i = fr.read()) != -1){
        c[count++] = (char)i;
    }

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