| Author |
Convert xml to Java String
|
Shankar sanjay
Ranch Hand
Joined: Sep 14, 2009
Posts: 71
|
|
Hi I am having the following xml document (sample)
I want to create each EmpDetails as String of xml format, how to convert? for sample i want to convert to java String.(name space has to be included)
any idea?
|
 |
Jeff Verdegan
Bartender
Joined: Jan 03, 2004
Posts: 3133
|
|
|
Nevermind. My mistake.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 13842
|
|
I would load the document into a DOM, and then for each element for which you want to output a String, use an identity XSL transformation to transform it into a String.
Or did you already have that idea but you had a problem with some particular part of it? If so, asking about that particular part would have been more practical.
|
 |
Shankar sanjay
Ranch Hand
Joined: Sep 14, 2009
Posts: 71
|
|
|
Looking some idea or some sample code, the problem is extracting with name space
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 13842
|
|
That was an idea. You can get sample code from the tutorials.
And no, the namespaces are not a problem. Why do you say that is "the" problem?
|
 |
 |
|
|
subject: Convert xml to Java String
|
|
|