如何使用JSP读取远程网站上的XML文件?

发布于 2024-09-01 07:38:26 字数 287 浏览 6 评论 0原文

我在我的应用程序中使用 java servlet 和 jsp,我需要读取远程 XML 文件并将其正确呈现为 HTML 并显示在网页上...读取过程使用什么技术?我应该使用 HTTPURLConnection 类来读取xml文件的内容还是有其他方法? 另外,如果我使用servlet作为控制器,JSP作为视图,在这个过程中servlet和jsp的责任是什么?servlet是否应该读取整个XML文件,然后将读取的输出传递给JSP,JSP将打印例如,它并使用 XSL 正确渲染?

我真的希望听到任何可以提供帮助的人的消息,

谨致问候

I'm using java servlets and jsp in my application and I need to read the remote XML file and properly render it into HTML and display on a web page...What is the technology used for reading process?Should I use HTTPURLConnection class to read the contents of the xml file or there is some other way?
And also,if I use servlet as a controller and JSP as a view,what would be the responsibility of servlet and jsp in this process?Should servlet just read the whole XML file and then just pass the read output to JSP which will just print it and render properly using XSL for example?

I really hope to hear from any people who may help,

With kind regards

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

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

发布评论

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

评论(1

李不 2024-09-08 07:38:26

JSP 在此不承担任何责任。只需使用 XSL 转换 servlet 中的 XML 并将其结果直接写入响应的 OutputStream 即可。

StreamSource xml = new StreamSource(new URL("http://external.com/file.xml").openStream());
StreamSource xsl = new StreamSource(new File("/path/to/file.xsl"));
StreamResult out = new StreamResult(response.getOutputStream());

try {
    Transformer transformer = TransformerFactory.newInstance().newTransformer(xsl);
    transformer.transform(xml, out);
} catch (TransformerException e) {
    throw new ServletException("Transforming XML failed.", e);
}

不要忘记使用 HttpServletResponse#setContentType() 设置 Content-Type,否则网络浏览器可能会将其作为纯文本处理。

JSP has no responsibility here. Just transform the XML in servlet using XSL and write its result directly to the OutputStream of the response.

StreamSource xml = new StreamSource(new URL("http://external.com/file.xml").openStream());
StreamSource xsl = new StreamSource(new File("/path/to/file.xsl"));
StreamResult out = new StreamResult(response.getOutputStream());

try {
    Transformer transformer = TransformerFactory.newInstance().newTransformer(xsl);
    transformer.transform(xml, out);
} catch (TransformerException e) {
    throw new ServletException("Transforming XML failed.", e);
}

Don't forget to set the Content-Type using HttpServletResponse#setContentType(), else the webbrowser may handle it as plaintext.

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