HttpClient使用HttpGet进行json数据传输

  1. JSON字符串需要用urlencoding编码
  2. 对绝大多数HTTP client而言,URL长度都有上限,所以不能传太大的JSON,一般而言几K应该没问题,但是再长点就不好说了

  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 params = new ArrayList();  
  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); // urlencoding编码
  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. }  

你可能感兴趣的:(android)