我试图读取一个 .properties 文件并具有如下代码:
public final class Config {
static {
Properties properties = new Properties();
InputStream propertiesStream = Object.class.getResourceAsStream("config.properties");
if (propertiesStream != null) {
try {
properties.load(propertiesStream);
} catch (IOException e) {
e.printStackTrace();
}
} else {
System.out.println("file not found");
}
}
}
但它一直说找不到文件。
属性的内容是
pwd=passw0rd
任何人都知道如何解决这个问题?