Currently our Java application uses the values held within a tab delimited *.cfg file. We need to change this application so that it now uses an XML file.
What is the best/simplest library to use in order to read in values from this file?
|
feedback
|
|
There are of course a lot of good solutions based on what you need. If it is just configuration, you should have a look at Jakarta commons-configuration and commons-digester. You could always use the standard JDK method of getting a document :
| |||||
feedback
|
|
Is there a particular reason you have chosen XML config files? I have done XML configs in the past, and they have often turned out to be more of a headache than anything else. I guess the real question is whether using something like the Preferences API might work better in your situation. Reasons to use the Preferences API over a roll-your-own XML solution:
| |||
feedback
|
|
Here is a code example how to read a XML file A easy way to read/write/change XML files is to use XStream. XStream can convert Java objects to XML file. | |||
|
feedback
|
As you're asking for the simplest library, I feel obliged to add an approach quite different to that in Guillaume's top-voted answer. (Of the other answers, sjbotha's JDOM mention is closest to what I suggest). I've come to think that for XML handling in Java, using the standard JDK tools is certainly not the simplest way, and that only in some circumstances (such as not being able to use 3rd party libraries, for some reason) it is the best way. Instead, consider using a good XML library, such as XOM. Here's how to read an XML file into a
So, this was just a little bit simpler, as reading the file into Others will provide counter-arguments (like these) for why sticking to Java's standard XML APIs may be worth it - these probably have merit, at least in some cases, although personally I don't subscribe to all of them. In any case, when choosing one way or the other, it's good to be aware of both sides of the story. (This answer is part of my evaluation of XOM, which is a strong contender in my quest for finding the best Java XML library to replace dom4j.) | |||||
feedback
|
|
I've only used jdom. It's pretty easy. Go here for documentation and to download it: http://www.jdom.org/ If you have a very very large document then it's better not to read it all into memory, but use a SAX parser which calls your methods as it hits certain tags and attributes. You have to then create a state machine to deal with the incoming calls. | |||
|
feedback
|
|
JAXB is simple to use and is included in Java 6 SE. With JAXB, or other XML data binding such as Simple, you don't have to handle the XML yourself, most of the work is done by the library. The basic usage is to add annotation to your existing POJO. These annotation are then used to generate an XML Schema for you data and also when reading/writing your data from/to a file. | |||
|
feedback
|
|
Depending on your application and the scope of the cfg file, a properties file might be the easiest. Sure it isn't as elegant as xml but it certainly easier. | |||
|
feedback
|
|
The simplest by far will be Simple http://simple.sourceforge.net, you only need to annotate a single object like so
Then all you have to do to read the whole file is specify the location and it will parse and populate the annotated POJO's. This will do all the type conversions and validation. You can also annotate for persister callbacks if required. Reading it can be done like so.
| |||||
feedback
|
|
Use
It's easy to write the configuration files by hand, or use the corresponding | |||
|
feedback
|
|
Here's a really simple API that I created for reading simple XML files in Java. It's incredibly simple and easy to use. Hope it's useful for you. | |||
|
feedback
|