安卓通过httpget传入json参数,请求数据

server接口如:

http://127.0.0.1?param={
  "Params" : {
    "ProjectID" : "00000010"
  },
  "Version" : "1.0",
  "SessionID" : "111111",
  "Method" : "GetProject",
  "AppID" : "",
  "Key" : "

}

拼凑url的方法如:

public static String getProject(String projectID, String version, String sessionID, String method, String appID, String key) throws JSONException{
JSONObject jo1 = new JSONObject();
jo1.put("ProjectID", projectID);


JSONObject jo = new JSONObject();
        jo.put("Params",jo1);
        jo.put("Version", version);
        jo.put("SessionID", sessionID);
        jo.put("Method", method);
        jo.put("AppID", appID);
        jo.put("Key", key);


        String str = jo.toString().replace("\"", "%22").replace("{", "%7b").replace("}", "%7d");
return "http://127.0.0.1?param="+str;
}

tips:在http post或get请求时,传入的参数不能有"或{或},所以需要转码。

从server发送请求得到数据:

public JSONObject getJSONObjFromUrl(String url) throws Exception {
HttpParams httpParams = new BasicHttpParams();
setHttpParams(httpParams);

DefaultHttpClient httpClient = new DefaultHttpClient(httpParams);
HttpGet httpGet = new HttpGet(url);

HttpResponse httpResponse = httpClient.execute(httpGet);

int res = httpResponse.getStatusLine().getStatusCode();

if (200 == res) {
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();

BufferedReader reader = new BufferedReader(new InputStreamReader(is, "utf-8"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
jsonStr = sb.toString();
jObj = new JSONObject(jsonStr);
} else {
throw new Exception();
}
return jObj;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值