Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For the purpose of my project I need to have a Config file to set some values and I need to parse this file and extract assigned values to my variables in the code. Do you have any suggestion or any tool I could use? and I'm coding with Java!

share|improve this question
2  
What format is the config file? What have you tried so far? – Matt Ball Jan 22 at 21:15

closed as not a real question by Paul Bellora, Matt Ball, A--C, jlordo, Mario Jan 22 at 21:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 5 down vote accepted

Leverage standard Java Properties class. Create a properties file, i.e. conf.properties and load it.

#conf.properties:
key=value

#code
Properties conf = new Properties();
conf.load(new FileInputStream(new File("conf.properties")));
conf.getProperty("key"); // returns "value"
share|improve this answer

Java has a standard for this, it's called Properties.

share|improve this answer

You doesn't need any tool for this simple project. Store the values as name=value pairs making sure they adhere to the java.util.Properties format and then you can use the class's API to load them

share|improve this answer

The simplest method is to use a text file. It is advisable to put variables with their values ​​in an xml file and then read it with Sax. Another method is to use json.

share|improve this answer

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