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

How to know whether a property exists or not in a property file in java?

share|improve this question

5 Answers

According to http://java.sun.com/javase/6/docs/api/java/util/Properties.html, getProperty() returns null if the property was not found. You could also call propertyNames() or stringPropertyNames() and look to see whether the property name of interest is in the returned set.

share|improve this answer
thanku .......... – user351809 May 27 '10 at 9:58

Just load the properties file and then try to get the desired property.

public String getProperty(String key)

Searches for the property with the specified key in this property list. If the key is not found in this property list, the default property list, and its defaults, recursively, are then checked. The method returns null if the property is not found.

share|improve this answer

Yet another alternative is to exploit the fact the Properties extends Hashtable and use containsKey.

share|improve this answer

You can also call getProperty(String key, String defaultValue) and check for the default Value.

http://java.sun.com/javase/6/docs/api/java/util/Properties.html#getProperty(java.lang.String,java.lang.String)

share|improve this answer

Here is some trick how to find out is some file (not mandatory property file) exists in class path

public class FileUtil {
    public static boolean isFileExists(String fileName){
         return null != FileUtil.class.getResourceAsStream(fileName);
    }
}

Sure it not always works as long it depends on class loading aspects

share|improve this answer

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.