开发者

Saving a the contents of string in a xml and reading the xml file again

开发者 https://www.devze.com 2023-03-16 11:59 出处:网络
I have a HTML page which contains users data and the data is stored intags, 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 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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消