HttpClient使用HttpGet进行json数据传输

项目中与对方进行数据交互时,对方提供了一套夸域json方式传递数据,并给出了一个js示例

Js代码   收藏代码
  1. $.getJSON(  
  2.     "http://www.----aspx?callback=?",  
  3.     {Name:"123",Pass:"123"},   
  4.     function(json){  
  5.         if(json.UserId==null){  
  6.             alert("NO");  
  7.         }else{  
  8.             alert(json.UserId);  
  9.         }  
  10.     }  
  11. );  

 但是此方法处理数据时,只能在页面中进行,局限性很大。因此在具体实施时,使用了HttpClient来代替。

Java代码   收藏代码
  1. import java.io.InputStreamReader;  
  2. import java.util.ArrayList;  
  3. import java.util.List;  
  4.   
  5. import org.apache.http.HttpEntity;  
  6. import org.apache.http.HttpResponse;  
  7. import org.apache.http.HttpStatus;  
  8. import org.apache.http.NameValuePair;  
  9. import org.apache.http.client.HttpClient;  
  10. import org.apache.http.client.methods.HttpGet;  
  11. import org.apache.http.client.utils.URLEncodedUtils;  
  12. import org.apache.http.impl.client.DefaultHttpClient;  
  13. import org.apache.http.message.BasicNameValuePair;  
  14. import org.apache.http.protocol.HTTP;  
  15. import org.json.JSONException;  
  16. import org.json.JSONObject;  
  17. import org.json.JSONTokener;  
  18.   
  19.   
  20. /** 
  21.  * 使用HttpClient请求页面并返回json格式数据. 
  22.  * 对方接收的也是json格式数据。 
  23.  * 因此使用HttpGet。 
  24.  * */  
  25. public class Json {  
  26.       
  27.     public static void main(String[] args) throws JSONException {  
  28.           
  29.         JSONObject json = new JSONObject();  
  30.         List<NameValuePair> params = new ArrayList<NameValuePair>();  
  31.         params.add(new BasicNameValuePair("Name""123"));  
  32.         params.add(new BasicNameValuePair("Pass""123"));  
  33.         //要传递的参数.  
  34.         String url = "http://www.----aspx?" + URLEncodedUtils.format(params, HTTP.UTF_8);  
  35.         //拼接路径字符串将参数包含进去  
  36.         json = get(url);  
  37.         System.out.println(json.get("UserId"));  
  38.           
  39.     }  
  40.   
  41.     public static JSONObject get(String url) {  
  42.           
  43.         HttpClient client = new DefaultHttpClient();  
  44.         HttpGet get = new HttpGet(url);  
  45.         JSONObject json = null;  
  46.         try {  
  47.             HttpResponse res = client.execute(get);  
  48.             if (res.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {  
  49.                 HttpEntity entity = res.getEntity();  
  50.                 json = new JSONObject(new JSONTokener(new InputStreamReader(entity.getContent(), HTTP.UTF_8)));  
  51.             }  
  52.         } catch (Exception e) {  
  53.             throw new RuntimeException(e);  
  54.               
  55.         } finally{  
  56.             //关闭连接 ,释放资源  
  57.             client.getConnectionManager().shutdown();  
  58.         }  
  59.         return json;  
  60.     }  
  61. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值