2

我的 android 项目中有一个属性文件,但我不知道如何从文件中读取属性。我看过几个教程,但那些对我没有帮助,此外我还遇到了一些错误。您能否发布一些简单的示例代码以了解其工作原理?

4

1 回答 1

12

这是一些示例代码...

Properties props=new Properties();
InputStream inputStream = 
this.getClass().getClassLoader().getResourceAsStream("example.properties");
props.load(inputStream);
exampleUrl=props.getProperty("baseUrl");
exampleUsername=props.getProperty("username");      
examplepassword=props.getProperty("password");

如果没有您自己的一些代码,将无能为力。希望这可以帮助。

于 2013-06-13T20:34:04.343 回答