19

我需要向我的应用程序添加一些属性文件。我已将此文件添加到controller目录中,但无法加载它们(在类路径中没有?) -InputStream为空。这个文件放在哪里可以访问?

public class Application extends Controller {

    static {
        try {
            Properties p = new Properties();
            InputStream in =  Application.class.getClassLoader().getResourceAsStream("accounts.properties");
            if(in != null) {
                p.load(in);
                in.close();
            } else {
                error("null inputstream");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }       
    }

    // Actions below 
    // ...
}
4

1 回答 1

28

您必须将其放在confPlay 应用程序的文件夹中。

您也可以使用conf目录中的子文件夹。

例如:

conf/foo/bar.txt

可以使用以下方式访问:

InputStream in = MyClass.class. getResourceAsStream("/foo/bar.txt")

您还可以通过更新project/Build.scala文件并添加以下内容,在您的应用程序中添加自定义资源目录:

val main = play.Project(appName, appVersion, appDependencies).settings(
      ...
      resourceDirectory in Compile <<= baseDirectory / "myresources"
      ...
  )
于 2012-12-21T11:54:37.523 回答