Android 如何存储“字符串”在网页上?
所以我想在我的网站上存储一个字符串,然后让我的应用程序下载它,这样我就可以在布局中使用它。我怎么能这么做呢?我有办法可以获取 html 文件并让 android 读取该文本吗?或者我可以存储 .txt 并让 android 将其转换为字符串吗? 谢谢
So I want to store a string on my website and then have my app download it, so I could use it in a layout. How could I do that? I there a way I can take html files and have android read that text? or can I store a .txt and have android convert that to a string?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您可以将字符串放入您的网络服务器将为您提供的文件中(也许完全省略扩展名)。然后,您可以使用该文件的 url 从 Android 应用程序下载它。
看来您可能想研究 JSON,它将有助于存储结构化数据而不仅仅是一个字符串。
这里是下载网址的示例来自 Android 程序。
If I understand you correctly, you could just put the string inside of a file that your web server will serve up for you (maybe omit the extension altogether). You can then download it from an android app using the file's url.
It seems like you might want to look into JSON, it will facilitate storing structured data instead of just a string.
Here is an example of downloading a url from an Android program.