This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
hi, i am new to xml. i want to fetch data from database through java class and store xml file. this is my process. i want to know how to create xml file through java class. anyone please help me.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35249
7
posted
0
There are various ways to do this. In simple cases you might just write directly to a file, using the java.io classes.
For anything that's not trivial, construct an in-memory representation using DOM, and then serialize that to a file once it's complete. Here's an introduction on how to do that. All classes needed for that are part of the the JDK, so you don't need to download anything else.