如何将数据从 PHP 持久保存到 Android
我如何将数据从PHP持久保存到android?
例子: 我希望 www.google.com 中的所有字符串都保存在参数文本字符串中,并且我使用它..
How i save data from PHP to android persistently?
example:
i want all string in www.google.com saved in parameter textstring, and i use it..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 HttpClient。然后,使用您的 InputStream,检查此链接:
http://developer .android.com/guide/topics/data/data-storage.html#filesInternal
并将其写入您想要的文件中。
一个简单而肮脏的例子:
您可能还想缓冲您的读写代码。
另一种方法是使用:
这取决于你。我喜欢 HttpClient,因为你可以处理更多事情。
Use HttpClient. Then, with your InputStream, check this link:
http://developer.android.com/guide/topics/data/data-storage.html#filesInternal
And write it to the file you want.
A quick and dirty example:
You may also want to buffer your reading and writing code.
Another method would be using:
It's up to you. I like HttpClient 'cos you can handle more things.