gpt4 book ai didi

codenameone - 访问 .properties 属性

转载 作者:行者123 更新时间:2023-12-02 09:26:07 28 4
gpt4 key购买 nike

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

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

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

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

当我这样做时:

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

我得到“nono”

最佳答案

“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"));

关于codenameone - 访问 .properties 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37873070/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com