How to use Java property files?
I have a list of key/value pairs of configuration values I want to store as Java property files, and later load and iterate through.
Questions:
- Do I need to store the file in the same package as the class which will load them, or is there any specific location where it should be placed?
- Does the file need to end in any specific extension or is
.txt
OK? - How can I load the file in the code
- And how can I iterate through the values inside?
Solution 1:
You can pass an InputStream to the Property, so your file can pretty much be anywhere, and called anything.
Properties properties = new Properties();
try {
properties.load(new FileInputStream("path/filename"));
} catch (IOException e) {
...
}
Iterate as:
for(String key : properties.stringPropertyNames()) {
String value = properties.getProperty(key);
System.out.println(key + " => " + value);
}
Solution 2:
You can store the file anywhere you like. If you want to keep it in your jar file, you'll want to use
Class.getResourceAsStream()
orClassLoader.getResourceAsStream()
to access it. If it's on the file system it's slightly easier.Any extension is fine, although .properties is more common in my experience
Load the file using
Properties.load
, passing in anInputStream
or aStreamReader
if you're using Java 6. (If you are using Java 6, I'd probably use UTF-8 and aReader
instead of the default ISO-8859-1 encoding for a stream.)Iterate through it as you'd iterate through a normal
Hashtable
(whichProperties
derives from), e.g. usingkeySet()
. Alternatively, you can use the enumeration returned bypropertyNames()
.
Solution 3:
If you put the properties file in the same package as class Foo, you can easily load it with
new Properties().load(Foo.class.getResourceAsStream("file.properties"))
Given that Properties extends Hashtable you can iterate over the values in the same manner as you would in a Hashtable.
If you use the *.properties extension you can get editor support, e.g. Eclipse has a properties file editor.