Tagged Questions
StAX stands for Streaming API for XML. It's a streaming Java-based, event-driven, pull-parsing API for reading and writing XML documents.
11
votes
4answers
357 views
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 is a push parser, meaning that it's an instance of the ...
9
votes
4answers
3k views
Best StAX Implementation [closed]
My quick search reveals the reference implementation (http://stax.codehaus.org), the Woodstox implementation (http://woodstox.codehaus.org), and Sun's SJSXP implementation ...
8
votes
6answers
6k views
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 form:
<element1>
<element2>
someData
</element2>
</element1>
...
6
votes
1answer
704 views
Error while parsing XML file with StAx
I wrote a xml parser with StAx that I use to parse XML streams received from the server.Here is my code :
private Map<String, IUnitaryAction> parse(InputStream is) throws XMLStreamException {
...
6
votes
8answers
2k views
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, I'll try to be as brief as possible. Title gives basic idea.
Here is an ...
6
votes
2answers
528 views
Can XSLT processors be multi-threaded?
I'm fishing for approaches to a problem with XSLT processing.
Is it possible to use parallel processing to speed up an XSLT processor? Or are XSLT processors inherently serial?
My hunch is that XML ...
5
votes
7answers
612 views
How do I write unescaped XML outside of a CDATA
I am trying to write XML data using Stax where the content itself is HTML
If I try
xtw.writeStartElement("contents");
xtw.writeCharacters("<b>here</b>");
xtw.writeEndElement();
I get ...
5
votes
3answers
1k views
StAX parsing from Java NIO channel
I am attempting to receive a stream of XML events over a Java NIO channel. I am new to both NIO and StAX parsing, so I could very easily be overlooking something :)
My search has led me to several ...
4
votes
2answers
685 views
How do I serialize / deserialize a class in XML with Woodstox StAX 2
I'm pretty much trying to archive, what has been done in how-to-serialize-deserialize-simple-classes-to-xml-and-back (C#) in Java. If possible, I would like to avoid writing a serialize / deserialize ...
4
votes
1answer
2k views
Validation using JAXB and Stax to marshal XML document
I have created an XML schema (foo.xsd) and used xjc to create my binding classes for JAXB. Let's say the root element is "collection" and I am writing N "document" objects, which are complex types.
...
3
votes
1answer
83 views
How to configure the behavior of the XML parser used by JAX-WS
My intent is to prevent the XML parser from referencing external entities, defined in a DOCTYPE section at the beginning of the request's XML, but I'm interested in being able to more generally ...
3
votes
3answers
150 views
Out of memory error in StAX
I am using the following simple StAX code to iterate through all the tags in XML. Size of
input.xml > 100 MB
XMLInputFactory xif = XMLInputFactory.newInstance();
FileInputStream in = new ...
3
votes
2answers
497 views
Are there any StAX implementation for android?
I want to use StAX API implementation in android 1.6 and above devices. Are there any implementations out there ? I cannot use the jar file directly since it gives issues regarding inner class. If its ...
3
votes
2answers
213 views
Java contextual sax / stax parsing
I would like to extract all text elements which appear directly as a child node to the root node. I've had a glance at java standard sax fascilities using DefaultHandler; but it doesn't seem like it's ...
3
votes
4answers
2k views
why is sax parsing faster than dom parsing ? and how does stax work?
somewhat related to: http://stackoverflow.com/questions/3701265/libxml2-from-java
yes, this question is rather long-winded - sorry. I kept is as dense as I felt possible. I bolded the questions to ...
3
votes
1answer
3k views
“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 in the towel and try asking here before I throw my laptop out the window.
I'm ...
3
votes
5answers
1k views
XMLStreamReader and a real stream
Update There is no ready XML parser in Java community which can do NIO and XML parsing. This is the closest I found, and it's incomplete: http://wiki.fasterxml.com/AaltoHome
I have the following ...
3
votes
2answers
9k views
which .jar file has javax.xml.stream.*?
Going nuts again with my Mac running Java 1.5.... where do I get a .jar file that has javax.xml.stream.XMLInputFactory ? I want to use StAX but don't know how to get it set up right.
:::scream::: I ...
2
votes
1answer
53 views
Need a CDATA event notifying stax parser for java
I have taken over the maintenance of an application that uses a stax parser to break down an XML file of many records into individual records for further processing. Using this type of parser for this ...
2
votes
1answer
174 views
Spring Batch Stax XML reading job is not ending when out of input
I'm using Spring Batch to set up a job that will process a potentially very large XML file. I think I've set it up appropriately, but at runtime I'm finding that the job runs, processes its input, ...
2
votes
2answers
104 views
How to catch Attribute-events with a StAX XML-parser?
I try to parse an XML file with a StAX XML-parser. It give me START_ELEMENT and END_DOCUMENT events but no ATTRIBUTE events. How can I receive ATTRIBUTE events with the StAX parser?
My XML:
...
2
votes
1answer
95 views
Do I need stax-api-1.0.x in my web app when using JDK 1.6?
I am currently developing a web app that uses Jersey for REST. I use maven, and both stax-api-1.0.1 and 1.0.2 are pulled into my web-inf/lib.
I thought the stax api were a aprt of JDK1.6?
Here is my ...
2
votes
3answers
227 views
Convert Java w3c Document to XMLStreamReader
I would like to reuse some existing code in our code base that accepts an XMLStreamReader my application has the required data as a w3c Document.
The following example is a minimum test case:
public ...
2
votes
1answer
111 views
How can I validate my XML using a schema, reading only one object/element at a time by JAXB's XMLStreamReader?
The code below works correctly to unmarshal XML from the stream one object at a time.
But when I un-comment the unmarshaller.setSchema(schema) line the program throws an exception:
...
2
votes
1answer
89 views
writeStartElement has prvoide namespaceURI, why need another writeNamespace?
The code:
XMLOutputFactory outputFactory = XMLOutputFactory.newInstance();
XMLStreamWriter writer = outputFactory.createXMLStreamWriter(System.out);
writer.writeStartDocument("1.0");
...
2
votes
4answers
488 views
How to Merge two XMLs in Java
I am trying to merge two xmls in Java. I am using STaX API to write these XMLs. I searched a lot on internet on how to merge xmls but none seems as straight forward as C#. Is there any ...
2
votes
1answer
218 views
JAXB unmarshalling to entities
I am working on a project involving an XML stream and converting that data to persisted data in my Database. So far I have gotten to the point where I can consume my webservice, I generated some JAXB ...
2
votes
2answers
171 views
Is there a way to build a StAX filter chain?
Making custom transformations for different event types with StAX using EventFilter and StreamFilter I feel being forced into a procedural implementation - extract these events and process them, ...
2
votes
1answer
436 views
How to transform XMLStreamReader to XMLStreamWriter
Should be easy and obvious but I cant find a way - the XMLOutputFactory accepts anly OutputStream, Result or another Writer to generate a new XMLStreamWriter. What I have at hand is an XMLStreamReader ...
2
votes
1answer
67 views
Writing out an element with staxmate api
I am using staxmate to write out an xml document. I want to write out xml elements with a prefix/namespace like "pre:elem". I can construct this manually as "pre" + ":" + "elem" and pass it on to the ...
2
votes
1answer
98 views
Scala + stax compile problem during deploy process
I developed an app in scala-ide (eclipse plugin), no errors or warnings. Now I'm trying to deploy it to the stax cloud:
$ stax deploy
But it fails to compile it:
compile:
[scalac] Compiling 2 ...
2
votes
4answers
316 views
XMLEventWriter: how can I tell it to write empty elements?
I do not see an option within javax.xml.stream.XMLEventWriter or javax.xml.stream.XMLOutputFactory to set either up in a way so that empty elements are written (instead of explicit start and end ...
2
votes
2answers
272 views
XMLEventWriter from scratch: how do I emit xmlns attribute?
I am trying to write an XML document from scratch using the XMLEventWriter from the StAX API.
I cannot figure out how to get the default namespace attribute to be emitted.
For example, the default ...
2
votes
1answer
182 views
Metro & StreamBuffer namespace error - am I understanding this correctly?
All,
I'm (still) working on calling a WSE 3.0 .NET web service from Java/Metro 2.0. We've got the security requirements set so that we're encrypting the body & header of the messages & ...
2
votes
3answers
2k views
Is there a Java XML API that can parse a document without resolving character entities?
I have program that needs to parse XML that contains character entities. The program itself doesn't need to have them resolved, and the list of them is large and will change, so I want to avoid ...
2
votes
1answer
770 views
StAX - how to set XMLInputFactory.IS_VALIDATING to true?
this is my first time using StAX for parsing XML documents (still in the learning stage). During the process to parse an XML document using XMLStreamReader and generate a copy of the document using ...
2
votes
1answer
534 views
self-closing tags with XMLEventWriter
So the question is pretty much as stated in the title. I am doing some xml work and using XMLEventWriter. The big issue I'm having is that I need to create some self closing tags
The problem ...
2
votes
3answers
559 views
Logic (if any) behind Google App Engine excluding standard JDK 1.6 APIs
It looks like GAE has chosen a subset of JDK 1.6 classes, as per:
Google App Engine JDK white list
which is very unfortunate as one gets class linkage errors all over the place with most common java ...
2
votes
8answers
1k views
How would you use Java to handle various XML documents?
I'm looking for the best method to parse various XML documents using a Java application. I'm currently doing this with SAX and a custom content handler and it works great - zippy and stable.
I've ...
2
votes
3answers
872 views
Small modification to an XML document using StAX
I'm currently trying to read in an XML file, make some minor changes (alter the value of some attributes), and write it back out again.
I have intended to use a StAX parser ...
1
vote
1answer
32 views
StAX escaping of greater than (>)
I am using the StAX Streaming Api in vrsion 1.2.0 from http://stax.codehaus.org/.
When I'm trying to write the following xml to a file the greater than char is not escaped. However lesser than does ...
1
vote
1answer
34 views
Stax issue parsing document which have an end element and start element on the same line
I have the following code for converting the elements of an XML file into a String using Stax:
private static XMLStreamReader getReader(InputStream inputStream) throws XMLStreamException {
...
1
vote
1answer
27 views
Does stax have a standard api such that I can swap out libraries to see what's fastest?
Does stax have a standard api such that I can somehow write my code in a generic way to read an xml file and load them into my java objects, and if I want I can swap out implementations of the xml ...
1
vote
2answers
70 views
Dynamically reading raw XML elements as text in Java
Assuming an XML file with unknown structure (i.e., unknown element and attribute names), like
<RootElement>
<Level 1 ...>
<Level 2 ...>
...
</Level ...
1
vote
3answers
144 views
Java - Read XML and leave all entities alone
I want to read XHTML files using SAX or StAX, whatever works best.
But I don't want entities to be resolved, replaced or anything like that.
Ideally they should just remain as they are.
I don't want ...
1
vote
5answers
450 views
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 pick each transaction XML based on the user input and send it to processing system.
...
1
vote
1answer
100 views
Adding DTD info to xml using DOM
I am using DOM to create an XML file and using StAX to parse another xml to get data selectively to write.
I am stuck at a point where I have the DTD event from Stax but i dont know how to write it ...
1
vote
2answers
163 views
What is the difference between the StAX Cursor API and Iterator API?
I came across two different codes for parsing a file with StAX. A quick googling told me that there are 2 ways to parse : using cursor API and using iterator API. Please tell me the difference between ...
1
vote
1answer
235 views
StAX EventFilter StackOverflowError
I have this EventFilter implementation that's supposed to filter <InterestingElement> start element events:
class InterestingElementFilter implements EventFilter {
@Override
public ...
1
vote
1answer
393 views
How do I configure JAXB to use Woodstox on JBoss 6?
I'm deploying a Java EE 6 JAX-RS web service on JBoss 6, and I'd like to use Woodstox instead of whatever SAX/StAX parser is currently being used. Since some stack traces list classes in (among other ...