Top "Sax" questions

SAX stands for Simple API for XML, and is an event-based way of reading XML data from a document.

How to set Saxon as the Xslt processor in Java?

This is a simple question, but one I cannot find the answer to. I have an XSLT 2.0 stylesheet that I'm …

java xslt sax
Parsing local XML file using Sax in Android

Can anyone tell me how to parse a local XML file stored in the system using SAX, with an example …

xml android parsing sax
How to get element's value from XML using SAX parser in startElement?

Is it possible to get the content of an element from a XML file in startElement function that is the …

java xml sax saxparser
Is there any XPath processor for SAX model?

I'm looking for an XPath evaluator that doesn't rebuild the whole DOM document to look for the nodes of a …

java xml xpath sax
Howto let the SAX parser determine the encoding from the xml declaration?

I'm trying to parse xml files from different sources (over which I have little control). Most of the them are …

java xml encoding sax xml-parsing
Cure for 'The string "--" is not permitted within comments.' exception?

I'm using Java 6. I have this dependency in my pom ... <dependency> <groupId>xerces</groupId> &…

java parsing xhtml sax xerces
Parse XML string using SAX

Is there any way to parse an XML string using Android SAX?

xml android string sax
SaxParseException in eclipse: XML document structures must start and end within the same entity

I am using the last.fm API for JAVA which can be found here . I have a huge Dataset in …

java xml eclipse sax last.fm
Parsing very large XML documents (and a bit more) in java

(All of the following is to be written in Java) I have to build an application that will take as …

java xml memory-management streaming sax
ElementTree iterparse strategy

I have to handle xml documents that are big enough (up to 1GB) and parse them with python. I am …

python xml sax elementtree iterparse