How to take all the properties of a property file as initialized variables inside a java program?

StackOverflow https://stackoverflow.com/questions/10733068

  •  10-06-2021
  •  | 
  •  

문제

I'm using properties file in my java program.

Currently whenever I'm need of some property from properties file, I'm using propertyFile.getProperty(propertyKeyName);and taking this into some variable: String propertyName1 = propertyFile.getProperty(propertyKeyName);

Is there any way that with out explicitly defining a variable (propertyName1) and initializing it using getProperty(), Can I get the all the Key=Value of a properties file as String variable which has been initialized "String Key=Value" inside my program?

Thanks, Chandra

도움이 되었습니까?

해결책

No. Variables are declared at compile-time - their names (for instance/static variables, at least) and types are baked into the class file. How could that possibly work when the names are only known at execution time?

What would you expect to happen if wrote an expression which referred to a variable which "didn't exist" at execution time due to the contents of the properties file?

Now what you can do is write a class to initialize an instance of a class via reflection - you could write your class:

public class Person
{
    private String firstName;
    private String lastName;
    private String jobTitle;
    // Whatever... accessors etc
}

and then use reflection to create an instance of Person with values populated from a properties file. That mechanism could then fail at load time if some properties were missing (if you wanted it to).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top