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

I want a simple file format to store and retrieve data from disk in Java.

name=value
list=value1,value2,value3

this is mostly going to be used for initial config settings used at startup of the app. I could invision having a watcher on the file to notify the app if it changes so the new settings can be applied potentially but that would be a nice to have. The first part would be pretty easy to write. I just don't want to reinvent the wheel if something is already out there for this and I'd prefer to avoid something as heavy as spring.

share|improve this question

2 Answers

Take a look at the java.util.Properties class.

Properties

share|improve this answer
Yeah that works alright if you handle the list parsing yourself and of course there's no notification of anything changing on disk. Just not that rich feature wise. – jtruelove Feb 22 '11 at 2:14
1  
As I was thinking about this more, there's also the Apache Commons Configuration project. I'm not sure it's that active any more, but you should take a look and see if it meets your needs: commons.apache.org/configuration/index.html – Shaun Feb 22 '11 at 3:42

You can use the Preferences class. It has a notification system, but alas it doesn't notice changes made outside the running JVM or directly to the underlying configuration store (e.g. the config file). It's a really nice class though.

share|improve this answer
yeah that is too bad, as I imagine the changes would almost always be outside the JVM. – jtruelove Feb 22 '11 at 2:14
You can probably add a file watcher thing as well, that would be cool. You can notify the existing preference listeners, so you could reuse those classes. – sjr Feb 22 '11 at 2:18

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.