Android 中HttpURLConnection与HttpClient使用的简单实例
时间:2021-09-04 09:48:50|栏目:Android代码|点击: 次
1:HttpHelper.java
复制代码 代码如下:
public class HttpHelper {
//1:标准的Java接口
public static String getStringFromNet1(String param){
String result="";
try{
URL url=new URL(param);
HttpURLConnection conn=(HttpURLConnection)url.openConnection();
if(conn.getResponseCode()==HttpURLConnection.HTTP_OK){
InputStream is=conn.getInputStream();
byte[]data=new byte[1024];
int len=is.read(data);
result=new String(data,0,len);
is.close();
conn.disconnect();
}
}catch(Exception e){
e.printStackTrace();
}
return result;
}
//2:Apache接口
public static String getStringFromNet2(String param){
String result="";
try{
HttpClient client=new DefaultHttpClient();
HttpGet get=new HttpGet(param);
HttpResponse response=client.execute(get);
if(response.getStatusLine().getStatusCode()==HttpStatus.SC_OK){
result=EntityUtils.toString(response.getEntity());
}
}catch(Exception e){
e.printStackTrace();
}
return result;
}
}
上一篇:Android setTag方法的key问题解决办法
栏 目:Android代码
下一篇:android通过Location API显示地址信息的实现方法
本文标题:Android 中HttpURLConnection与HttpClient使用的简单实例
本文地址:http://www.codeinn.net/misctech/172436.html