i want to parse a file which is similar to a HTML file . Its not exactly a html file.It can contain some user defined tags. I dont know in advance how the tags are nested in one another in advance.The tags may also have attributes. I think i shold use a SAX parser. Does java have a inbuilt SAX . Can i call a function when i encounter each tag?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use following packages, java.io,javax.xml.parsers,org.xml.sax.
// Implements the methods of ContentHandler
|
|||
|
|
|
I think you should use StAX instead, which is faster and easier to use than SAX. It's part of Java SE 6. |
|||||
|
|
SAX was originally Java only, so yes, Java has a built-in SAX parser - http://java.sun.com/j2se/1.4.2/docs/api/javax/xml/parsers/SAXParser.html. This will only work if your document is well formed. |
|||
|
|