Best way to read properties file in java?

后端 未结 3 810
遇见更好的自我
遇见更好的自我 2020-12-10 09:18

I am aware of two ways to read a .properties file:

1- System.getProperties.load(Inputstream for .properties file);

2- Creating a new Properties object and

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-10 09:30

    we will read properties files using the URl...

     Properties props = new Properties();
     try
     {
         java.net.URL url = Thread.currentThread().getContextClassLoader().getResource(fileName);
        java.net.URL url2 = ClassLoader.getSystemResource(fileName);
         props.load(url.openStream());
     }
     catch (FileNotFoundException e)
     {
         // TODO Auto-generated catch block
         e.printStackTrace();
     }
     catch (IOException e)
     {
         // TODO Auto-generated catch block
         e.printStackTrace();
     }
     return props;
    

提交回复
热议问题