aspose file tools
The moose likes Java in General and the fly likes generating XML document using Java Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "generating XML document using Java" Watch "generating XML document using Java" New topic
Author

generating XML document using Java

Varalakshmi Ramanarayan
Ranch Hand

Joined: Oct 28, 2007
Posts: 108
Hi all,

How can I genrate a XML document using Java? What are the imports that I have to use? Also, Please let me know JAXP is helpful in this.
Please Help me with a few examples..

Thanks in advance


SCJP 5 - 87%<br />Next SCWCD
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35440
    
    9
Here's an example of how to create XML using DOM and the JAXP API.


Android appsImageJ pluginsJava web charts
Varalakshmi Ramanarayan
Ranch Hand

Joined: Oct 28, 2007
Posts: 108
Ulf,

This is exaclty what I was looking for.
Thanks very much for your help.

Regards.
Varalakshmi Ramanarayan
Ranch Hand

Joined: Oct 28, 2007
Posts: 108
Ulf,

I have one more problem now . After generating and populating the XML, from other part of my program I need to read the text in each element node.
and i tried using the below code

But on the line marked 'here' I am getting a nullPointer exception (the ele1 is null). For this method I am passing (Document doc,Element root) as the parameters. I am not able to figure out why ele1 is not getting a value.
I am using this code to generete the XML

A sample of my XML document is below.

PLease help me to solve this problem.

Thanks.
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35440
    
    9
Could the problem be that the document contains "OptionsIndex" elements, while the code looks for "optionsIndex"?
Varalakshmi Ramanarayan
Ranch Hand

Joined: Oct 28, 2007
Posts: 108
Ulf,

You are right. That was the problem.
I should have looked at the code more carefully.
thanks again for your help.

Regards.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: generating XML document using Java
 
Similar Threads
Converting String to XML file
How to make an XML document into java class using jdom
Java way of doing this
XML over http
Need a java code for convert PDF to Word document as well as Word document to XML. Is this possible