This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes XML and Related Technologies and the fly likes how can i parse? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » XML and Related Technologies
Reply Bookmark "how can i parse?" Watch "how can i parse?" New topic
Author

how can i parse?

Suhas Madap
Ranch Hand

Joined: Aug 29, 2006
Posts: 49
Hi,
How can i parse a XML which is in String i.e.
String str="<?xml version="1.0" encoding="UTF-8"?>
<book>
<title>This is my first Xml program</title>
<prod id="15-12" media="internet"></prod>

<chapter>Introduction to XML
<para>what is XML</para>
<para>How to code XML</para>
</chapter>

<chapter>Intro to syntax
<para>Elements of XML</para>
<para>Attribute of XML</para>
</chapter>
</book>";

So which parser will be a good option, SAX or DOM?


Thank you,<br /> <br />Suhas K Madap<br /> <br />If you understand what you're doing, you're not learning anything."
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16487
    
    2

To parse XML from a string, you do something like this:As for which parser to use, that depends on several things. Have you read any Java XML tutorials yet? Here's a link to one:

http://java.sun.com/xml/tutorial_intro.html
Suhas Madap
Ranch Hand

Joined: Aug 29, 2006
Posts: 49
ThanQ paul. this will help me. ThanQ once again.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: how can i parse?
 
Similar Threads
docbook & FOP
how can i map
DTD question
Parsing XML file
Freemarker XML problem