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!
|
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.
|
Leverage standard Java
|
||||
|
|
|
Java has a standard for this, it's called Properties. |
|||
|
|
|
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 |
|||
|
|
|
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. |
|||
|
|