Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 667|回复: 0

[实例教程]Android 三种获取页面数据方法

[复制链接]

该用户从未签到

发表于 2011-10-22 13:25:05 | 显示全部楼层 |阅读模式
三种获取网页数据的代码,是自己在用的时候随手整理出来的。此处仅贴出函数段,不贴出import了,用的时候可以用eclipse自动import一下就行了。函数的详细用途描述请看代码中注释。调用的时候请对应函数需要的参数。

        第一种

java代码: /**获取参数(ArrayList<NameValuePair> nameValuePairs,String url)后post给远程服务器

* 将获得的返回结果(String)返回给调用者

* 本函数适用于查询数量较少的时候

* Chen.Zhidong

* 2011-02-15*/

public String posturl(ArrayList<NameValuePair> nameValuePairs,String url){

String result = "";

String tmp= "";

InputStream is = null;

try{

HttpClient httpclient = new DefaultHttpClient();

HttpPost httppost = new HttpPost(url);

httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

HttpResponse response = httpclient.execute(httppost);

HttpEntity entity = response.getEntity();

is = entity.getContent();

}catch(Exception e){

return "Fail to establish http connection!";

}

try{

BufferedReader reader = new BufferedReader(new InputStreamReader(is,"utf-8"));

StringBuilder sb = new StringBuilder();

String line = null;



while ((line = reader.readLine()) != null) {

sb.append(line + "\n");

}

is.close();

tmp=sb.toString();

}catch(Exception e){

return "Fail to convert net stream!";

}

try{

JSONArray jArray = new JSONArray(tmp);





for(int i=0;i<jArray.length();i++){

JSONObject json_data = jArray.getJSONObject(i);

Iterator<?> keys=json_data.keys();



while(keys.hasNext()){

result += json_data.getString(keys.next().toString());

}

}

}catch(JSONException e){

return "The URL you post is wrong!";

}

return result;

}

第二种

java代码:
/**获取参数指定的网页代码,将其返回给调用者,由调用者对其解析

* 返回String

* Chen.Zhidong

* 2011-02-15*/

public String posturl(String url){

InputStream is = null;

String result = "";

try{

HttpClient httpclient = new DefaultHttpClient();

HttpPost httppost = new HttpPost(url);

HttpResponse response = httpclient.execute(httppost);

HttpEntity entity = response.getEntity();

is = entity.getContent();

}catch(Exception e){

return "Fail to establish http connection!"+e.toString();

}



try{

BufferedReader reader = new BufferedReader(new InputStreamReader(is,"utf-8"));

StringBuilder sb = new StringBuilder();

String line = null;

while ((line = reader.readLine()) != null) {

sb.append(line + "\n");

}



is.close();

result=sb.toString();

}catch(Exception e){

return "Fail to convert net stream!";

}

return result;

}
  第三种

java代码:
/**获取指定地址的网页数据

* 返回数据流

* Chen.Zhidong

* 2011-02-18*/



public InputStream streampost(String remote_addr){

URL infoUrl = null;

InputStream inStream = null;

try {

infoUrl = new URL(remote_addr);

URLConnection connection = infoUrl.openConnection();

HttpURLConnection httpConnection = (HttpURLConnection)connection;

int responseCode = httpConnection.getResponseCode();

if(responseCode == HttpURLConnection.HTTP_OK){

inStream = httpConnection.getInputStream();

}

} catch (MalformedURLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

return inStream;

}
回复

使用道具 举报

该用户从未签到

发表于 2011-10-22 13:25:13 | 显示全部楼层

Re:[实例教程]Android

果断学习。
回复 支持 反对

使用道具 举报

该用户从未签到

发表于 2011-10-22 13:25:18 | 显示全部楼层

Re:[实例教程]Android

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-22 17:51 , Processed in 0.376424 second(s), 45 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表