将字符串的内容保存在 xml 中并再次读取 xml 文件

发布于 2024-11-17 22:12:45 字数 206 浏览 2 评论 0原文

我有一个 HTML 页面,其中包含用户数据,数据存储在标签中,我选择了特定的 div 标签并使用 java servlet 保存为字符串,现在我需要将这些字符串保存在 xml 文件中。我是java新手,我能够生成一个xml文件并向其中添加一些内容,这是实验项目。

在实时情况下,我遇到了上述场景,一旦我将这些字符串存储在 xml 中,我需要将其读回并将其作为 HTML 呈现给浏览器

I have a HTML page which contains users data and the data is stored in tags, I have selected particular div tags and saved as a string using java servlet now I need to save those strings in a xml file. I am newbie to java I was able to generate a xml file and add some contents to it, it was experimental project.

In the real time I have the above scenario and once I store the store those strings in a xml I need to read that back and present it as HTML to the broswers

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

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

发布评论

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

评论(1

梦在深巷 2024-11-24 22:12:45

您可以使用XML 绑定的Java 体系结构 (JAXB)。
您可以使用 User 的所有属性创建简单的 POJO 文件。

读写是由JAVA反手完成的。

此处提供了一个非常简单的 JAXB 教程。

您可以在网上找到许多其他有用的文章。

You can use Java Architecture for XML Binding (JAXB).
You can create simple POJO file with all the properties of User.

Reading and writing is done on the back hand by JAVA.

A very simple JAXB tutorial is available here.

You can find many other useful articles on web.

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