vote up 1 vote down star

I'm a newbie when it comes to properties, and I read that XML is the preferred way to store these. I noticed however, that writing a regular .properties file in the style of

foo=bar
fu=baz

also works. This would mean a lot less typing (and maybe easier to read and more efficient as well). So what are the benefits of using an XML file?

flag

79% accept rate

5 Answers

vote up 5 vote down check

In XML you can store more complex (e.g. hierarchical) data than in a properties file. So it depends on your usecase. If you just want to store a small number of direct properties a properties file is easier to handle (though the Java properties class can read XML based properties, too).

It would make sense to keep your configuration interface as generic as possible anyway, so you have no problem to switch to another representation ( e.g. by using Apache Commons Configuration ) if you need to.

link|flag
FYI: The java.util.Properties class does support XML: java.sun.com/javase/6/…) java.sun.com/javase/6/…) – Asaph Sep 4 at 16:38
Edit: the urls above are mangled the closing paren should be part of the links. – Asaph Sep 4 at 16:41
vote up 0 vote down

The biggest benefit to using an XML file is that XML declares its encoding, while .properties does not.

If you are translating these properties files to N languages, it is possible that these files could come back in N different encodings. And if you're not careful, you or someone else could irreversibly corrupt the character encodings.

link|flag
That's simply wrong. Java property-files are defined to have ISO8859_1 as encoding, every other encoding is against specification. See java.sun.com/javase/6/… for more information. – Mnementh Sep 4 at 18:54
Dude- it doesn't 'declare' its encoding in the file. – Mike Sickler Sep 4 at 19:10
You're missing my point. A text editor or other tool will obey an XML file's declared encoding, but since a properties file has no such declaration, it's up to the user to decide what encoding to save it in. That is a recipe for trouble if you're doing translation. – Mike Sickler Sep 4 at 19:16
vote up 0 vote down

It depends on the data you're encoding. With XML, you can define a more complex representation of the configuration data in your application. Take something like the struts framework as an example. Within the framework you have a number of Action classes that can contain 1...n number of forward branches. With an XML configuration file, you can define it like:

<action class="MyActionClass">
  <forward name="prev" targetAction="..."/>
  <forward name="next" targetAction="..."/>
  <forward name="help" targetAction="..."/>
</action>

This kind of association is difficult to accomplish using just the key-value pair representation of the properties file. Most likely, you would need to come up with a delimiting character and then include all of the forward actions on a single property separated by this delimiting character. It's quite a bit of work for a hackish solution.

Yet, as you pointed out, the XML syntax can become a burden if you just want to state something very simple, like set feature blah to true.

link|flag
vote up 0 vote down

XML is handy for complex data structures and or relationships. It does a decent job for having a "common language" between systems.

However, xml comes at a cost. Its is heavy to consume. You've got to load a parser, ensure the file is in the correct format, find the information etc...

Whereas properties files is pretty light weight and easy to read. Works for simple key/value pairs.

link|flag
vote up 2 vote down

If you have alot of repeating data, it can be simpler to process

<connections>
  <connection>this</connection>
  <connection>that</connection>
  <connection>the other</connection>
</connections>

than it is to process

connection1=this
connection2=that
connection3=the other

especially if you are expecting to have to store ALOT of data, or it must be stored in a definite hierarchy

If you are just storing a few scalar values though, I'd go for the simple Properties approach every time

link|flag
Yeah, I was planning to use it for different values. None of the data is shared with the other files. – pg-robban Sep 4 at 16:11

Your Answer

Get an OpenID
or

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