访问.properties属性

时间:2016-06-17 04:19:58

标签: codenameone

我是CodenameOne的新手,很棒的平台。

我看到一个名为“codenameone_settings.properties”的文件我添加了一个名为“myapi”的新属性,“http://localhost:3000

我如何访问此属性?我试过了

Preferences.set("myapi", "nono")

当我这样做时:

System.out.println(Preferences.set("myapi", "nono"));

我得到“nono”

1 个答案:

答案 0 :(得分:5)

" codenameone_settings.properties"是应用程序无法访问的项目配置文件。 如果您需要/想要在您的应用程序中使用属性文件,请将您自己的属性文件添加到项目src /文件夹并从代码中加载它。

例如:

   //place the App_settings.properties under the src/ dir
    Properties conf = new Properties();
    conf.load(Display.getInstance().getResourceAsStream(getClass(), "/App_settings.properties"));