android与服务器进行json数据交换的工具类

package com.test;

import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.protocol.HTTP;
import org.json.JSONException;
import org.json.JSONObject;

import android.util.Log;

public class JSONUtil {
    private static final String TAG = "JSONUtil";  
    
    /**
     * 获取json内容
     * @param  url
     * @return JSONArray
     * @throws JSONException  
     * @throws ConnectionException  
     */  
    public static JSONObject getJSON(String url) throws JSONException, Exception {  
          
        return new JSONObject(getRequest(url));  
    }  
      
    /**
     * 向api发送get请求,返回从后台取得的信息。
     *  
     * @param url
     * @return String
     */  
    protected static String getRequest(String url) throws Exception {  
        return getRequest(url, new DefaultHttpClient(new BasicHttpParams()));  
    }  
      
    /**
     * 向api发送get请求,返回从后台取得的信息。
     *  
     * @param url
     * @param client
     * @return String
     */  
    protected static String getRequest(String url, DefaultHttpClient client) throws Exception {  
        String result = null;  
        int statusCode = 0;  
        HttpGet getMethod = new HttpGet(url);  
        Log.d(TAG, "do the getRequest,url="+url+"");  
        try {  
            //getMethod.setHeader("User-Agent", USER_AGENT);  
 
            HttpResponse httpResponse = client.execute(getMethod);  
            //statusCode == 200 正常  
            statusCode = httpResponse.getStatusLine().getStatusCode();  
            Log.d(TAG, "statuscode = "+statusCode);  
            //处理返回的httpResponse信息  
            result = retrieveInputStream(httpResponse.getEntity());  
        } catch (Exception e) {  
            Log.e(TAG, e.getMessage());  
            throw new Exception(e);  
        } finally {  
            getMethod.abort();  
        }  
        return result;  
    }  
      
    /**
     * 处理httpResponse信息,返回String
     *  
     * @param httpEntity
     * @return String
     */  
    protected static String retrieveInputStream(HttpEntity httpEntity) {  
                  
        int length = (int) httpEntity.getContentLength();         
        //the number of bytes of the content, or a negative number if unknown. If the content length is known but exceeds Long.MAX_VALUE, a negative number is returned.  
        //length==-1,下面这句报错,println needs a message  
        if (length < 0) length = 10000;  
        StringBuffer stringBuffer = new StringBuffer(length);  
        try {  
            InputStreamReader inputStreamReader = new InputStreamReader(httpEntity.getContent(), HTTP.UTF_8);  
            char buffer[] = new char[length];  
            int count;  
            while ((count = inputStreamReader.read(buffer, 0, length - 1)) > 0) {  
                stringBuffer.append(buffer, 0, count);  
            }  
        } catch (UnsupportedEncodingException e) {  
            Log.e(TAG, e.getMessage());  
        } catch (IllegalStateException e) {  
            Log.e(TAG, e.getMessage());  
        } catch (IOException e) {  
            Log.e(TAG, e.getMessage());  
        }  
        return stringBuffer.toString();  
    }  
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值