从 xml 文件生成 html 文件

发布于 2024-11-19 12:03:41 字数 152 浏览 1 评论 0原文

我有一个网页,其中存储了所有用户的信息,并且我正在存储这些信息 xml 文件中的用户信息。当用户打开该文件时,请考虑 xml 文件的名称“abc.xml” 同一页面说“www.domain.com/abc.html”我需要使用以下命令构建 HTML 从 xml 中获取数据 小服务程序。

I have a web page where the information of all the users are stored and I am storing the information
of the users in a xml file. COnsider the name of the xml file "abc.xml" when the users to open the
same page say "www.domain.com/abc.html" I neeed to constracut the HTML fetching the data from the xml using
servlets.

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

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

发布评论

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

评论(1

夏夜暖风 2024-11-26 12:03:41

几种可能的(干净的)方法:

  • 使用 XStreamjaxb,将反序列化数据提供给 JSP 并生成 HTML 服务器端。
  • 使用 XSLT 在客户端完成 html 渲染。

对我来说,这之间没有“最佳”选择,这取决于您的用例和限制。

A couple of possible (clean) approaches:

  • deserialize the xml file with XStream or jaxb, feed the deserialized data to a JSP and generate the HTML server side.
  • use XSLT to have the html rendering done client side.

For me there's no "best" choice between those, it depends on your use case and constraints.

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