Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have java service that should receive an xml file containing several elements. i need to analyze this file extract matched elements and send them to their related services.

I hope to find a light way to do that as it's a heavy XML file.

Anyone knows a java framework or solution which can help to perform that ?

Thanks

share|improve this question
How large is the file? (file size, # of elements). If it's going over the wire in a web service, it should be too big (<25Mb). Regular XML DOM parsers work for most files up to 25Mb, after that consider SAX. It would have to be a huge file (>1Tb) to exceed SAX capabilities. – William Walseth Oct 25 '11 at 16:28

6 Answers

There are dozens of ways to read an XML file in Java. There are several ones to do it just with Java SE :

  • SAX
  • DOM
  • StAX
  • JAXB

Google for them : you'll find documentation and tutorials. The api doc is also helpful. You'll find all these tools in package names.

share|improve this answer
1  
Thanks JB, SAX and STAX seems interesting – achraf Oct 25 '11 at 16:47

XPath might be a good solution for this. Here is a link to the API documentation, but you'll also be able to find many different tutorials and getting started guides. Just search Google for "Java XPath tutorial" or similar.

http://download.oracle.com/javase/1,5.0/docs/api/javax/xml/xpath/package-summary.html

There are probably several other implementations of XPath that may be better suited for your needs, so it would be worth looking at other open source implementations.

share|improve this answer
He'd need to have a way of applying the XPath expression, though. And using XPath directly in Java usually means building a DOM, which would incur a heavy memory penalty for a large XML document. – G_H Oct 25 '11 at 16:28
Yes i want to avoid unmarshalling the XML file into java objects as it will use a lot of memory – achraf Oct 25 '11 at 16:41
1  
I don't know a ton about the Java XPath APIs, but I don't think all implementations of XPath require you to load the entire XML graph into memory all at once. XPath at the core really doesn't require for you to load the entire input or output into memory all at once, so that may just be an implementation detail. The XPath impl in the Java SDK may do something like that, but you may be able to find impls that work better for large input files. My answer was intended to suggest an option to look at, there may be performance implications that would lead you to look for something else. – Andy White Oct 25 '11 at 17:14

Pass it through an XSLT stylesheet. Java XSLT implementations are really good, keeping the input tree to a minimum and often using (at least by default) bytecode compilation instead of interpreting to make the transformation really fast. Matching input and producing the desired output is exactly what XSLT is suitable for, with its declarative style.

share|improve this answer

You can try to get the DOM tree of the XML file and then you can use this recursive method to go through the tree to find what you want.

share|improve this answer
This will work, but if the XML is indeed heavy, the DOM tree might be too much for the VM memory. – Yuval Oct 25 '11 at 16:38
yeah, i guess you're quite right. sorry achraf. – temelm Oct 25 '11 at 16:39

Apache Commons Digester

Define your custom rules to read xml file, and invoke methods or create Objects to unmarshalling.

/students/student -> new Student();
/students/student/name -> invoke setName(name) for student
/students/student -> invoke addStudent(student) for each student

everything is optional, and you define that need

test with http://commons.apache.org/digester, example in http://www.javaworld.com/javaworld/jw-10-2002/jw-1025-opensourceprofile.html?page=2 and example.

share|improve this answer

Use JDOM, it's small, fast, and easy to use.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.