Читайте содержимое страницы php с Android, используя Eclipse
Пожалуйста, я хочу очень простой способ прочитать содержимое моей php-страницы из моего приложения для Android! Я не хочу jSon или что-то, все, что я хочу, это чтобы содержимое страницы php было строкой в java! Спасибо заранее!
1 ответ
Решение
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);
String html = "";
InputStream in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder str = new StringBuilder();
String line = null;
while((line = reader.readLine()) != null)
{
str.append(line);
}
in.close();
html = str.toString();
Log.i('HtmlContent',+html)