将字符串的内容保存在 xml 中并再次读取 xml 文件
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
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.