私は .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
誰でもこの問題を解決する方法を知っていますか?