1

プロパティ ファイルを に入れるのは好きでresources/mypackage/.../somepackage/resourcefile.propertiesはなく、resources/resourcefile.properties. それはどういうわけかなしで可能ですか:

  1. 書くことを強要されたりMyApplication.class.getResourceAsStream("../../../../../../../../resources/resourcefile.properties")
  2. を使用するとTomcatで機能しませんSomeClass.getClassLoader().getResourceAsStream("resourcefile.properties")か?
4

1 に答える 1

4

先頭にスラッシュを入れてルート パッケージを指定します。

SomeClass.getClassLoader().getResourceAsStream("/resourcefile.properties")
于 2012-05-14T10:21:36.380 に答える