I'm working on a project under which i have to take a raw file from the server and convert it into XML file.
Is there any tool available in java which can help me to accomplish this task like JAXP can be used to parse the XML document ?
|
|
I guess you will need your objects for later use ,so create
Or you con go with |
|||
|
|
|
Yes. This assumes that the text in the raw file is already XML. You start with the If the raw file contains something other than XML, you'll want to scan it somehow (your own code here) and use the stuff you find to build up from an empty I then usually use a |
|||
|
|
|
JAXP can also be used to create a new, empty document:
Then you can use that Document to create elements, and append them as needed:
But, as Jørn noted in a comment to your question, it all depends on what you want to do with this "raw" file: how should it be turned into XML. And only you know that. |
|||
|
|