用 Java 读取属性文件

我有以下代码尝试读取属性文件:

Properties prop = new Properties();
ClassLoader loader = Thread.currentThread().getContextClassLoader();
InputStream stream = loader.getResourceAsStream("myProp.properties");
prop.load(stream);

最后一行有个例外,具体来说:

Exception in thread "main" java.lang.NullPointerException
at java.util.Properties$LineReader.readLine(Properties.java:418)
at java.util.Properties.load0(Properties.java:337)
at java.util.Properties.load(Properties.java:325)
at Assignment1.BaseStation.readPropertyFile(BaseStation.java:46)
at Assignment1.BaseStation.main(BaseStation.java:87)

谢谢, 尼科斯

441054 次浏览

基于您的异常,InputStream为空,这意味着类装入器没有找到您的属性文件。我猜测 myProp.properties 位于您的项目的根目录中,如果是这样的话,那么您需要一个斜杠:

InputStream stream = loader.getResourceAsStream("/myProp.properties");

确保文件名是正确的,并且该文件实际上位于类路径中。如果这不是导致最后一行引发异常的情况,则 getResourceAsStream()将返回 null。

如果 myProp.properties 位于项目的根目录中,则改为使用 /myProp.properties

考虑到上下文,应该使用 loader.getResourceAsStream("myPackage/myProp.properties")

领先的 '/'不与 ClassLoader.getResourceAsStream(String)方法一起工作。

或者,您可以使用 Class.getResourceAsStream(String)方法,该方法使用 '/'来确定路径是绝对路径还是相对于类位置的路径。

例子:

myClass.class.getResourceAsStream("myProp.properties")
myClass.class.getResourceAsStream("/myPackage/myProp.properties")

您的文件应该在类路径中以 com/example/foo/myProps.properties的形式可用。然后按以下方式加载:

props.load(this.getClass().getResourceAsStream("myProps.properties"));

可以使用 ResourceBundle类读取属性文件。

ResourceBundle rb = ResourceBundle.getBundle("myProp.properties");


你可在此网页找到以下资料:
Http://www.mkyong.com/java/java-properties-file-examples/

Properties prop = new Properties();
try {
//load a properties file from class path, inside static method
prop.load(App.class.getClassLoader().getResourceAsStream("config.properties"));


//get the property value and print it out
System.out.println(prop.getProperty("database"));
System.out.println(prop.getProperty("dbuser"));
System.out.println(prop.getProperty("dbpassword"));


}
catch (IOException ex) {
ex.printStackTrace();
}

不能像-那样使用 这个关键字

props.load(this.getClass().getResourceAsStream("myProps.properties"));

在一个静态的上下文中。

最好的办法是掌握应用程序上下文,比如-

ApplicationContext context = new ClassPathXmlApplicationContext("classpath:/META-INF/spring/app-context.xml");

然后可以从类路径加载资源文件-

//load a properties file from class path, inside static method
prop.load(context.getClassLoader().getResourceAsStream("config.properties"));

这对静态和非静态上下文都适用,最好的部分是这个属性文件可以位于应用程序类路径中包含的任何包/文件夹中。

可以使用 java.io.InputStream 读取文件,如下所示:

InputStream inputStream = getClass().getClassLoader().getResourceAsStream(myProps.properties);
Properties prop = new Properties();


try {
prop.load(new FileInputStream("conf/filename.properties"));
} catch (IOException e) {
e.printStackTrace();
}

基于项目根目录的 conf/filename.properties

如果你的属性文件路径和 java 类路径是相同的,那么你应该这样做。

例如:

Src/myPackage/MyClass.java

Src/myPackage/MyFile.properties

Properties prop = new Properties();
InputStream stream = MyClass.class.getResourceAsStream("MyFile.properties");
prop.load(stream);

用于阅读原始顺序的属性文件:

    File file = new File("../config/edc.properties");
PropertiesConfiguration config = new PropertiesConfiguration();
PropertiesConfigurationLayout layout = new PropertiesConfigurationLayout(config);
layout.load(new InputStreamReader(new FileInputStream(file)));


for(Object propKey : layout.getKeys()){
PropertiesConfiguration propval =  layout.getConfiguration();
String value = propval.getProperty((String) propKey).toString();
out.print("Current Key:" + propkey + "Current Value:" + propval + "<br>");
}

这里的许多答案描述了一些危险的方法,它们实例化文件输入流,但是没有获得对输入流的引用,以便以后关闭该流。这会导致悬空输入流和内存泄漏。加载属性的正确方式应与下列方式类似:

    Properties prop = new Properties();
try(InputStream fis = new FileInputStream("myProp.properties")) {
prop.load(fis);
}
catch(Exception e) {
System.out.println("Unable to find the specified properties file");
e.printStackTrace();
return;
}

注意 try-with-resources块中文件输入流的实例化。由于 FileInputStream是可自动关闭的,它将在 try-with-resources块退出后自动关闭。如果要使用简单的 try块,则必须在 finally块中使用 fis.close();显式关闭它。

没有一个当前的答案显示 InputStream被关闭(这将泄漏一个文件描述符) ,并且/或者在找不到资源时不处理返回 null 的 .getResourceAsStream()(这将导致带有混乱消息 "inStream parameter is null"NullPointerException)。你需要这样的东西:

String propertiesFilename = "server.properties";
Properties prop = new Properties();
try (var inputStream = getClass().getClassLoader().getResourceAsStream(propertiesFilename)) {
if (inputStream == null) {
throw new FileNotFoundException(propertiesFilename);
}
prop.load(inputStream);
} catch (IOException e) {
throw new RuntimeException(
"Could not read " + propertiesFilename + " resource file: " + e);
}

指定从 src 开始的路径如下:

src/main/resources/myprop.proper

如果 config.properties 不在 src/main/resource 目录中,而是在项目的根目录中,那么您需要执行以下操作:-

Properties prop = new Properties();
File configFile = new File(myProp.properties);
InputStream stream = new FileInputStream(configFile);
prop.load(stream);

我知道这是个老问题了。如果将来有人无意中发现这一点,我认为这是一个简单的方法。 将属性文件保存在项目文件夹中。

        FileReader reader = new FileReader("Config.properties");


Properties prop = new Properties();
prop.load(reader);

在以前的解决方案中,传递属性(特别是在编译时使用构建插件生成的属性文件)是一个非常好的做法,那就是使用 PropertySourcesPlaceholderConfigrer

    @Bean
public static PropertySourcesPlaceholderConfigurer placeholderConfigurer() {
PropertySourcesPlaceholderConfigurer propsConfig
= new PropertySourcesPlaceholderConfigurer();
propsConfig.setLocation(new ClassPathResource("myProp.properties"));
propsConfig.setIgnoreResourceNotFound(true);
propsConfig.setIgnoreUnresolvablePlaceholders(true);
return propsConfig;
}

然后可以访问属性从国际奥委会的要求,如

    @Value("${your.desired.property.pointer}")
private String value;