JAVA .properties file

后端 未结 3 2131
日久生厌
日久生厌 2021-01-25 14:27

having a lil issue, i have create a properties file :

config.properties located in ../resource/config.properties

this is the file currently :

des         


        
3条回答
  •  感动是毒
    2021-01-25 14:53

    You seem to misunderstand what properties files are. They're just data. They don't contain Java code, and aren't used to declare variables. To get the value associated to the key destinationPDF in the properties file, you need to call

    String destinationPDF = prop.getProperty("destinationPDF");
    

    after having initialized the prop variable and loaded the file using prop.load(new FileInputStream(...)). And then you'll have a variable initialized with the value of the key.

    Side note: please respect the Java naming conventions: variables start with a lower-case letter.

提交回复
热议问题