如何将数据从PHP保存到Android

时间:2011-04-23 02:55:40

标签: android httpconnection persistent-data

我如何将数据从PHP保存到android?

例如: 我希望www.google.com中的所有字符串都保存在参数textstring中,我使用它..

1 个答案:

答案 0 :(得分:0)

使用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,因为你可以处理更多的事情。