我是 android 开发的新手,想做一个从服务器提取数据的应用程序,有没有我可以使用的直截了当的教程?
问问题
297 次
3 回答
1
您可以使用此方法从服务器中选择数据,然后将输入修剪转换为字符串,然后您可以解析以供进一步使用。`
public static InputStream getUrlData(final String url)
throws URISyntaxException, ClientProtocolException, IOException {
final DefaultHttpClient client = new DefaultHttpClient();
final HttpGet method = new HttpGet(new URI(url));
final HttpResponse res = client.execute(method);
return res.getEntity().getContent();
}
`
于 2012-08-30T09:04:08.657 回答
0
使用 Andorid 很容易做到这一点,只需使用休息服务,您就可以上路了
于 2012-08-30T08:53:30.173 回答
0
于 2012-08-30T08:56:12.467 回答