如何使用JSP读取远程网站上的XML文件?
我在我的应用程序中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSP 在此不承担任何责任。只需使用 XSL 转换 servlet 中的 XML 并将其结果直接写入响应的
OutputStream
即可。不要忘记使用
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.Don't forget to set the
Content-Type
usingHttpServletResponse#setContentType()
, else the webbrowser may handle it as plaintext.