11

私は .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

誰でもこの問題を解決する方法を知っていますか?

4

4 に答える 4

0

config.properties を Config.java と同じフォルダーに保持することもできます。

//InputStream propertiesStream = Object.class.getResourceAsStream("config.properties");
InputStream propertiesStream   = Config.class.getResourceAsStream("config.properties");
于 2013-05-29T06:13:35.487 に答える