Java XML Parser for huge files -
i need xml parser parse file approximately 1.8 gb.
parser should not load file memory.
any suggestions?
aside recommended sax parsing, use stax api (kind of sax evolution), included in jdk (package javax.xml.stream ).
- stax project home: http://stax.codehaus.org/home
- brief introduction: http://www.xml.com/pub/a/2003/09/17/stax.html
- javadoc: https://docs.oracle.com/javase/8/docs/api/javax/xml/stream/package-summary.html
Comments
Post a Comment