PHPからAndroidにデータを永続的に保存するにはどうすればよいですか?
例:www.google.comのすべての文字列をパラメータtextstringに保存したいのですが、それを使用します。
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'cosが好きで、もっと多くのことを処理できます。