外部化 URL 的最佳方法是什么?
我的应用程序中有 10 个 URL,目前是硬编码的。我想将其外部化并将其放入文件中,以便我的应用程序可以读取它。
执行此操作的最佳方法是什么?
private String appURL = "http://..."
private String storeURL = "http://..."
private String someURL = "http://..."
注意:我永远不会在我的应用程序中写入此文件。我希望开发人员能够打开该文件,并在必要时更改 URL。
I have 10 URL's in my application, that are currently hard-coded. I want to externalize this and put it in a file so that my application can read it in.
What is the best way of doing this?
private String appURL = "http://..."
private String storeURL = "http://..."
private String someURL = "http://..."
Note: I will never be writing out to this file in my app. I want the developer to be able to open up the file, and change the URL if necessary.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Android 应用程序中外部化字符串的最简单方法是使用字符串资源。在
res/values
文件夹中创建文件uris.xml
:然后您可以通过以下方式访问字符串:
getString()
是的方法>Context
类。另请记住,您应该等到Context
初始化后再开始访问其资源。因此,不要早于Activity
或Application
的onCreate()
方法调用getString()
。Easiest way to externalize strings in an android application is to use string resources. Create file
uris.xml
atres/values
folder:You then can then access the strings by:
getString()
is a method ofContext
class. Also keep in mind that you should wait until aContext
will be initialized before starting access its resources. Hence invokegetString()
not earlier then atonCreate()
method ofActivity
orApplication
.您可以将值放入 XML“配置”文件中,然后只需从 XML 文件中读取值。
读取 XML 文件的示例。
或者仅使用 Android 的本机 res 文件夹 XML 资源文件,如 康斯坦丁·布罗夫。
You can put the values in a XML "configuration" file, then just read the values from the XML file.
Example of reading an XML file.
Or just use Android's native res folder XML resources files as pointed out by Konstantin Burov.
如果您希望能够编辑外部平面文件,您可以简单地在 SD 上创建一个文本文件(并具有一些默认值作为静态字符串或属性)。 onCreate 中所述的更改
然后,您的代码读取该文件(标准 Java IO)并拍摄 Activity 你也可以在 /assets 文件夹中有这样的文件;例如,参见这个
If you want ability to have external flat file to be editable you can simply create a text file on say SD (and have some defaults as static strings or properties). Then your code reads the file (standard Java IO) and pics the changes say in
onCreate
of your ActivityYou can also have such file in /assets folder; see this for example