Top "Stax" questions

StAX stands for Streaming API for XML.

"Content is not allowed in prolog" when parsing perfectly valid XML on GAE

I've been beating my head against this absolutely infuriating bug for the last 48 hours, so I thought I'd finally throw …

java xml google-app-engine parsing stax
which .jar file has javax.xml.stream.*?

I have problems again with my Mac running Java 1.5.... where do I get a .jar file that has javax.xml.…

java xml stax
Read XML String using StAX

I am using stax for the first time to parse an XML String. I have found some examples but can't …

java xml-parsing stax
When should I choose SAX over StAX?

Streaming xml-parsers like SAX and StAX are faster and more memory efficient than parsers building a tree-structure like DOM-parsers. SAX …

java xml xml-parsing sax stax
Convert XML file to CSV in java

@Before There will be probably some duplicate questions suggestions, I don't think that is the case maybe read this first, …

java xml stax
StAX XML formatting in Java

Is it possible using StAX (specifically woodstox) to format the output xml with newlines and tabs, i.e. in the …

java xml formatting stax woodstox
Reading Huge XML File using StAX and XPath

The input file contains thousands of transactions in XML format which is around 10GB of size. The requirement is to …

java xml xpath stax
StAX - Setting the version and encoding using XMLStreamWriter

I am using StAX for creating XML files and then validating the file with and XSD. I am getting an …

java xml encoding stax
why is sax parsing faster than dom parsing ? and how does stax work?

somewhat related to: libxml2 from java yes, this question is rather long-winded - sorry. I kept is as dense as …

java xml dom sax stax
stax xml validation

I know I can validate xml-file when I use sax. But can I validate when I use Stax?

stax xsd-validation