常用网络访问方式的模板

      注:先加权限 internet
      ------1--HttpClient方式向服务器发起----GET请求-------------
 //step1. 起线程
new Thread(){
public void run() {
try {
//step2. 创建能够进行网络访问的对象(HttpClient对象/HttpURLConnection对象)
HttpClient client = new DefaultHttpClient();
//step3. 设定网络访问的方式(GET/POST)
HttpGet get = new HttpGet("http://172.60.20.168:8080/ems/getCode.do");
//step4. 设定参数
//step5. 发起真正的请求,获得响应
HttpResponse resp = client.execute(get);
//step6. 解析响应内容
HttpEntity entity = resp.getEntity();
InputStream is = entity.getContent();
Bitmap bitmap = BitmapFactory.decodeStream(is);
is.close();
//step7. 将内容提交到主线程中显示
Message.obtain(handler, 101, bitmap).sendToTarget();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
};
}.start();
-----------------------2-URL的方式向服务器发起请求-----GET---------
          //起一个线程
 new Thread(){
public void run() {
try {
//step2. 创建能够进行网络访问的对象(HttpClient对象/HttpURLConnection对象)
URL url = new URL("http://172.60.20.168:8080/ems/getCode.do"); 
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
//step3. 设定网络访问的方式(GET/POST)
connection.setRequestMethod("GET");
connection.setDoInput(true);
//step4. 设定参数
//step5. 发起真正的请求,获得响应
connection.connect();
InputStream is = connection.getInputStream();
//step6. 解析响应内容
Bitmap bitmap = BitmapFactory.decodeStream(is);
is.close();
//step7. 将内容提交到主线程中显示
Message.obtain(handler, 101, bitmap).sendToTarget();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
};
}.start();
   ------3--HttpClient方式向服务器发起请求------POST--提交数据---
//step1. 起线程
new Thread(){
public void run() {
try {
//step2. 创建能够进行网络访问的对象(HttpClient对象/HttpURLConnection对象)
HttpClient client = new DefaultHttpClient();
//step3. 设定网络访问的方式(GET/POST)
HttpPost post = new HttpPost("http://172.60.20.168:8080/ems/regist.do");
//step4. 设定参数
post.setHeader("Content-Type", "application/x-www-form-urlencoded");
List<NameValuePair> parameters = new ArrayList<NameValuePair>();
parameters.add(new BasicNameValuePair("loginname","laowang"));
parameters.add(new BasicNameValuePair("password","123456"));
parameters.add(new BasicNameValuePair("realname","wang"));
parameters.add(new BasicNameValuePair("email","wang@abc.com"));
HttpEntity entity = new UrlEncodedFormEntity(parameters);
post.setEntity(entity);
//step5. 发起真正的请求,获得响应
HttpResponse resp = client.execute(post);
//step6. 解析响应内容
HttpEntity respEntity = resp.getEntity();
InputStream in = respEntity.getContent();
BufferedReader br = new BufferedReader(
new InputStreamReader(in));
String result = br.readLine();
br.close();
//step7. 将内容提交到主线程中显示
Message.obtain(handler, 102, result).sendToTarget();
} catch (Exception e) {
e.printStackTrace();
}
};
}.start();
   ----------------------4-URL的方式向服务器发起请求-----POST---------     
 //step1. 起线程
new Thread(){
public void run() {
try {
//step2. 创建能够进行网络访问的对象(HttpClient对象/HttpURLConnection对象)
URL url = new URL("http://172.60.20.168:8080/ems/regist.do");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
//step3. 设定网络访问的方式(GET/POST)
connection.setRequestMethod("POST");
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
//step4. 设定参数
connection.connect();
OutputStream out = connection.getOutputStream();
PrintWriter pw = new PrintWriter(out);
String params="";
HashMap<String, String> map = new HashMap<String, String>();
map.put("loginname", "laozhang");
map.put("password", "654321");
map.put("realname", "zhang");
map.put("email", "zhang@bbc.com");
params = getParams(map);
pw.print(params);
pw.flush();
pw.close();
//step5. 发起真正的请求,获得响应
InputStream in = connection.getInputStream();
BufferedReader br = new BufferedReader(
new InputStreamReader(in));
//step6. 解析响应内容
String result = br.readLine();
br.close();
//step7. 将内容提交到主线程中显示
Message.obtain(handler, 102, result).sendToTarget();
} catch (Exception e) {
e.printStackTrace();
} 
};
}.start();

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值