How to know whether a property exists or not in a property file in java?
|
According to http://java.sun.com/javase/6/docs/api/java/util/Properties.html, |
|||
|
|
|
Just load the properties file and then try to get the desired property.
|
|||
|
|
|
Yet another alternative is to exploit the fact the Properties extends Hashtable and use containsKey. |
|||
|
|
|
You can also call |
|||
|
|
|
Here is some trick how to find out is some file (not mandatory property file) exists in class path
Sure it not always works as long it depends on class loading aspects |
|||
|
|