Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jar ファイル (api) があり、そこから WEB-INF フォルダーに存在するプロパティ ファイルをロードする必要があります。このプロパティ ファイルを jar からロードするにはどうすればよいですか。
助けていただければ幸いです。
プロパティ ファイルが にある場合は、簡単に実行できますWEB-INF/classes。この場合、次のように書くだけです
WEB-INF/classes
Properties props = new Properties(); props.load(getClass().getResourceAsStream("/myprops.properties"));
明らかに、ファイルはのサブフォルダーにある可能性がありますclasses。この場合、 を呼び出すときにフル パスを指定する必要がありますgetResourceAsStream()。
classes
getResourceAsStream()