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

Hi experts What is the best way to work with xml configurations file to my application in java? Any XML parser that i found in the internet is too complex. thank you guys. Regards. elad.

share|improve this question
Why XML if you do not need the complexity? – Thorbjørn Ravn Andersen Nov 14 '10 at 11:31

3 Answers

up vote 2 down vote accepted

What XML parsers have you tried?

What you could do is to have a class named AppSettings (for example) and then serialize it with XStream. Once you start your application, this class is loaded and you make the appropriate changes. I doubt that you will find something simpler than XStream though. Also, telling us what you have done will only help us help you...

share|improve this answer
Hi, Thank you for your comment. – Elad Nov 14 '10 at 8:49
I've just think about serialize my configuration but I want to allow the user to change the xml configuration in editor and not in my program. I don't want to wast my time to write a GUI for configuration. – Elad Nov 14 '10 at 8:50
That a look at the XStream tutorial: xstream.codehaus.org/tutorial.html As you can see, the XML stored in the file is pretty readable, provided you have property names that make sense. Thus, I think that XStream does what you need :) – npinti Nov 14 '10 at 8:53
JAXB is easier to use than XStream: bdoughan.blogspot.com/2010/10/… – Blaise Doughan Nov 14 '10 at 10:55

JAXB is the easiest way to interact with XML in Java.

share|improve this answer
not as easy as XStream – IAdapter Nov 14 '10 at 11:00
JAXB is easier than XStream,check out: bdoughan.blogspot.com/2010/10/… – Blaise Doughan Nov 14 '10 at 23:43

What is the reason for using the XML format as configuration file? For most applications a property file is sufficient and offers a much lower learning curve.

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.