我如何将数据从 PHP 持久保存到 android?
示例:我希望 www.google.com 中的所有字符串都保存在参数文本字符串中,并且我使用它..
我如何将数据从 PHP 持久保存到 android?
示例:我希望 www.google.com 中的所有字符串都保存在参数文本字符串中,并且我使用它..
使用 HttpClient。然后,使用您的 InputStream,检查此链接:
http://developer.android.com/guide/topics/data/data-storage.html#filesInternal
并将其写入您想要的文件。
一个快速而肮脏的例子:
// This goes inside a try...
HttpClient htc = new DefaultHttpClient();
HttpGet get = new HttpGet("http://www.google.com");
HttpResponse htr = null;
htr = htc.execute(get);
InputStream is = htr.getEntity().getContent();
File saveFile = new File(getApplicationContext().getFilesDir().getPath() + File.separatorChar + "datos.txt");
FileOutputStream fos = new FileOutputStream(saveFile);
// Validate if exists and so on...
int c;
while ((c = is.read()) != -1)
{
fos.write(c);
}
// Catch, finally, close, etc...
您可能还想缓冲您的读写代码。
另一种方法是使用:
InputStream is = URL("http://www.google.com").getContent();
由你决定。我喜欢 HttpClient '因为你可以处理更多的事情。