如何保存数据持久化从PHP到Android



如何保存数据从PHP到android持久?

的例子:我想要所有的字符串在www.google.com保存在参数textstring,我使用它..

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

相关内容

  • 没有找到相关文章

最新更新