StAX stands for Streaming API for XML. It's a streaming Java-based, event-driven, pull-parsing API for reading and writing XML documents.

learn more… | top users | synonyms

0
votes
1answer
31 views

How can I transform input stream when I'm using stax2 XMLInputFactory2?

Parsing big xml files (500 - 800Mb) using stax2 like that: XMLStreamReader2 reader = (XMLStreamReader2) xmlif2.createXMLStreamReader(fileName, new FileInputStream(fileName)); to convert it into ...
1
vote
2answers
46 views

How to modify a huge XML file by StAX?

I have a huge XML (~2GB) and I need to add new Elements and modify the old ones. For example, I have: <books> <book>....</book> ... <book>....</book> ...
1
vote
0answers
32 views

Is it guaranteed that JRE 6+ has a default StAX implementation?

Since version 6 Oracle JRE has a default StAX implementation. Is it possible that an application which relies on default StAX will not work with JRE 6+ from another vendor?
0
votes
0answers
20 views

Understanding the difference between Cursor API and Iterator API of StAX

Ok, when learning how to process XML with StAX API. I saw that it has 2 ways to get the XML document parsed namely: Cursor API Iterator API The Cursor API is where you use XMLStreamReader and ...
1
vote
2answers
44 views

Why can't I delete the XML file I created?

My first question was about the speed of stax writer. Now I have a problem: I can't delete the XML file I created, with delete(); It is still being used somehow. I have tried to delete it manually ...
0
votes
1answer
20 views

Stax parser fails to read files with encoding UTF-16

I am using stax parser to read an xml file inside a common api in my app. The api takes inputstream as parameter and i am doing something like below public Object <commonApi>(InputStream is) ...
0
votes
0answers
27 views

List title of books have price >30

I want to list the book with price >30 here is my xml file <book category="CHILDREN"> <title lang="en">Harry Potter</title> <author>J K. Rowling</author> ...
1
vote
1answer
40 views

Why does StAX create XML slower than DOM?

i was trying to measure time needed for StAX and DOM to create two same documents. I dont know why DOM is faster in creating XML. Maybe my code for StAX writer is not very good. so here it is ...
1
vote
2answers
47 views

encoding in Java StAX parser

I'm using StAX to read XML file, but having problem with characters like žćčšđ. The code is almost same as in the SAX, but i had not that kind of problem with that. this is part of xml document ...
0
votes
0answers
54 views

Is it better to use StAX over SAX to parse large excel files with Apache POI?

I've implemented something based on this java source code to process XLSX files with the Apache POI library. The program parses using SAX. I was wondering if there are any performance benefits when ...
0
votes
1answer
21 views

Can we merge two xml files using stax

I have a requirement of merging two xml files.I am trying to investigate using stax parser. I am just concerned with only few particular elements as remaining elements are same in both the xml ...
0
votes
1answer
29 views

WSO2 Data Services Server - How to obtain an XML escaped result set

Getting an XML result set from WSO2 Data Services Server the special characters inside fields are not escaped, for example "&" is returned as "&", ">" is returned as ">" and so on ... Doing ...
0
votes
1answer
11 views

StAX Parsing - where to keep element schemas?

I need to write a parser to save data from XML in the format: <!-- Sample XML> <Results> <TableA> <ID>7</ID> <Name>Joe</Name> ...
0
votes
0answers
108 views

com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character

I am running the below exception when processing an Axis 2 web service in Client Stub. The issue happens only on WebLogic Server. The services (aar files) work fine in development on Tomcat Server but ...
1
vote
0answers
10 views

Import multiple python function from different program in STAX Job

I have been working on STAF & STAX, i have to created some STAX job using some modules of python and multiple function but all of them are in same file . Now I want to create some big stax ...
2
votes
2answers
38 views

XMLStreamReader: get character offset : XML from file

The XMLStreamReader->Location has a method called getCharacterOffset(). Unfortunately the Javadocs indicate this is an ambigously named method: it can also return a byte-offset (and this appears to ...
4
votes
3answers
92 views

What is 'Push Approach' and 'Pull Approach' to parsing?

Under the push parsing approach, a push parser generates synchronous events as a document is parsed, and these events can be processed by an application using a callback handler model This is ...
0
votes
0answers
62 views

Why does XMLStreamReader/StAXSource strip comments from XML?

The code below (based on sample code from http://jax-ws.java.net/nonav/jax-ws-20-fcs/arch/com/sun/xml/ws/util/xml/StAXSource.html) String xml = "<a><b>a text</b><!--a ...
0
votes
0answers
87 views

XMLStreamException :Trying to output second root, StaXparser

writer.writeStartElement(startElement.getName().getLocalPart()); //when i run on standalone machine with one thread, it works fine, but when i run the multiple jobs with multiple threads on the ...
0
votes
0answers
74 views

special characters in xml stax parser file

original xml file: <root> <article> <artists><artist role="A&amp;R Staff" id="1">Vance</artist><artists></article> </root> When i read the file ...
0
votes
2answers
49 views

StAX how do you preserve XML data exactly as is

I have a requirement to retain some XML data exactly as it is received from another system. Here is an example of what we are receiving: <SomeTag display="1 2 3 4 5 ...
1
vote
3answers
74 views

Finding Closing XML tag

I have an method to print out just the contents between an opening and closing XML tag. I know my XML depth counter is the issue, but I can't figure out where to put it / fix it. Here is the XML. ...
0
votes
1answer
75 views

XML creation for millions of records

I have to create a single large XML file which will have more than 60 milllion records. I need a fast way to do this operation as it will be repeated on regular basis. I have data at two places ...
0
votes
0answers
29 views

Stax Parsing based on XML qualified Tag Name

I was trying to parse the below XML Tag , using the Complete Qualified name of XML Tag <?xml version="1.0" encoding="UTF-8"?> <ns2:sagarResponse xmlns:ns2="http://test.com/dinem"> ...
0
votes
0answers
22 views

Using StAX to parse a website, URL

I have "downloaded" the XML from a website and have the parser working by loading the file using XMLInputFactory factory = XMLInputFactory.newInstance(); XMLStreamReader reader = ...
0
votes
2answers
51 views

JAVA StAX extracting

I cannot figure out either how to extract the start tag element name within an XML file. I am close ~ meaning no errors and I am getting the tag name but I am getting the tag name plus information. ...
0
votes
3answers
78 views

using a String variable outside loop

inside a StAX parsing example, I am setting a String dataread = se.getElementText();. I am successfully printing that string (dataread) immediately. However, everywhere else in my code, it won't ...
0
votes
2answers
54 views

StAX find Corresponding End Tag?

Is it possible / is there an easy way to find an end tag (END_ELEMENT) corresponding to a START_ELEMENT as in the following? while(reader.hasNext()){ XMLEvent event = reader.nextEvent(); ...
0
votes
1answer
52 views

StAX JAVA pulling out specific tags and data

I am trying to understand how to identify and specific XML and extract a specific piece of data at one of those tags. As I try to get to the above goal, I have been going through the docs and ...
0
votes
0answers
61 views

Java StAX, XMLEvent, SPACE is returned as CHARACTERS

According to the documentation a SPACE event is returned if ignorable white space has been parsed. I have provided a DTD, therefore the StAX parser should know which white space is ignorable. ...
1
vote
1answer
74 views

Java, XMLEvent location Characters

I'm parsing the following String with a StAX XMLEventReader: final String xmlstr = "<context><book><author>TheName</author></book></context>"; I'm observing the ...
0
votes
1answer
75 views

StAX createXMLEventReader should I use a BufferedReader?

xmlInputFactory.createXMLEventReader(new FileInputStream(myFile)); Should I use a BufferedReader-decorator for the FIS or is the XMLInputFactory clever enough to decorate the FileInputStream itself? ...
0
votes
1answer
134 views

Get only specific element node from xml using stax parser

<xml> <name>steve</name> <age>12</age> <country>Germany</country> <person> <college>kmu university</college> ...
0
votes
1answer
49 views

Best way to create huge xml file by duplicating the element(including children) with dom or sax using Java

I have a xml file(ABC.xml) and i need to duplicate only the <Transaction>...</Transaction> multiple times(more than 100000 times) keeping the Header and Trailer intact creating ...
1
vote
0answers
42 views

Is it possible to track file poiter (document position) with XML API?

I want to index XML file by IDs of its main level entries. I plan to parse entire document, extract ID from entry and index it (remember file position of opening tag < and position of closing tag ...
0
votes
2answers
134 views

Kettle (pdi) - Open multiple files with Stax Step

I have millions of xmls I need to read, transform and save to a database. Using StAX Step I managed to open an xml file and do what I needed. But the filename only let me open one file per step. Was ...
0
votes
1answer
153 views

How to add an element to an existing xml files with Stax?

I have an xml file similiar to the one below <?xml version="1.0" encoding="UTF-8"?> <a> <b id=1>xxx</b> <b id=2>yyy</b> <b id=3>zzz</b> </a> ...
0
votes
2answers
96 views

Woodstox StAX - How to turn off text content validation?

I'm reading an XML file using the default Woodstox EventReader, e.g.: XMLInputFactory.newInstance().createXMLEventReader(new FileInputStream(fileName)); If an input file happens to have the Unicode ...
0
votes
1answer
317 views

Java StAX parser fails to parse a valid xml

guys. I spent quite some time trying to understand if it's a bug or my own lack of education. Basically, I'm trying to react on specific element and read its contents with Transformer using Java StAX ...
0
votes
0answers
145 views

how to escape special characters using XMLEventWriter

I couldn't escape the special characters while writing xml with StAX. I am using BEA/Oracle implementation (com.bea.core.weblogic.stax_1.9.0.0.jar) on Weblogic Server 10.3.5 e.g. character ä public ...
1
vote
2answers
266 views

StAX XML all content between two required tags

Starting learning the StAX, using XMLStreamReader, I faced with some problem. How can I get ALL content between tags as Text? I mean, I know name of needed tag, and when I find it, I must go to the ...
4
votes
1answer
116 views

Tutorial on functional XML pull processing

I am looking for a good tutorial on XML pull processing (e.g. StAX) using a functional approach -- no mutable values. I am imagining that it will involve lots of recursive procedures that process ...
1
vote
2answers
153 views

Transforming from Stax to DOM results in NullPointerException

I am using StAX to reading through XML content and parsing parts of it into DOM fragments by transforming from StAXSource to DOMResult. However, this results in NullPointerException when any element ...
0
votes
1answer
137 views

How to efficiently (stream) process XML file in Mule 3?

My requirement is to (efficiently) read an XML file using streams (Stax) instead of loading the whole DOM in memory (JAXB). Anyone knows how to process an XML using the XmlToXMLStreamReader? As usual ...
0
votes
1answer
31 views

How to get Apache Axiom to correctly report source data line numbers when parsing XML

Here's what I'm doing, essentially copy/paste:ing from the Axiom Quickstart documentation: public GenericXmlParser(Reader input, String entryElementName, List<DciXmlMapping> dciXmlMappings) { ...
1
vote
1answer
163 views

STAX API reading Binary data

I am using STAX event API to read the binary data that is received from a SOAP call and would like to stream the same to a consumer. The XML payload from the SOAP call is something like this: ...
0
votes
0answers
21 views

STAF get timestamp

I'm looking for a while a way to get the timestamp of the remote machine but I couldn't figure it out. I check the services, the vars, what am I missing? Thanks EDIT : I found something good ...
0
votes
1answer
53 views

How to write @xml:space=“preserve” with Stax

I use stax to write a XML file. My question is how can I add the attribute xml:space="preserve" to my elements? Do I need to declare the xml prefix? AFAIK, it is normally not necessay. If I don't ...
3
votes
1answer
84 views

Why does javax.xml.stream.XMLEventReader extend raw Iterator instead of Iterator<XmlEvent>?

Why does XMLEventReader extend raw Iterator? Due to that XMLEventReader.next() returns Object and we have to use an explicit cast. Shouldn't it be this way: public interface XMLEventReader extends ...
1
vote
1answer
346 views

Stax parsing - parse children nodes depending on selected parent

I need to parse a huge xml file on server and send it to client. I want to do the parsing on demand - meaning, to only parse and show the parent nodes at first, and when the client clicks on a parent ...

1 2 3 4 5