java 利用HttpClient PostMethod提交json數據操作

故事前要

今天,在做公司的一個項目,需要和第三方公司進行對接,需要將我們采集到的數據發送給第三方公司,按照對方提供的文檔,傳遞好參數後,httpclient.execute(method)請求後,得到的狀態碼 ,一直是502,猶豫第一次使用HttpClient post json數據,一直懷疑是自己的代碼問題,最後不知在哪個技術論壇看到 ,有人問url請求中有空格怎麼辦,突然發現對方提供的pdf文檔中 竟然包含空格,而我天真的無視掉瞭 以為是文檔的問題。

算瞭…… 不多BB瞭….

PostMethod請求註意兩點:

1、如果使用的是公司的服務器,設置好代理和端口。

2、如果url中有空格,需要使用%20 進行轉義。

貼一下我的代碼 ,給不會還沒用過不會PostMethod請求的萌新們…

HttpClient httpClient = new HttpClient();
 String host = (String) BaseConfig.get("host");
 String port = (String) BaseConfig.get("port");
 httpClient.getHostConfiguration().setProxy(host, Integer.valueOf(port));
 PostMethod postMethod = new PostMethod(applyurl);
 JSONObject jsonObject = new JSONObject();
 jsonObject.put("name",user.getName());
 jsonObject.put("phone",user.getPhone());
 jsonObject.put("provinceCode",user.getProvinceCode()); 
 jsonObject.put("cityCode",user.getCityCode()); 
 jsonObject.put("buyModelCode",user.getBuyModelCode()); 
 jsonObject.put("dealerCode",user.getDealerCode()); 
 jsonObject.put("url","http:xxx"); 
 String toJson = jsonObject.toString();
 RequestEntity se = new StringRequestEntity (toJson ,"application/json" ,"UTF-8");
 postMethod.setRequestEntity(se);
 postMethod.setRequestHeader("Content-Type","application/json");
 //默認的重試策略
 postMethod.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, new DefaultHttpMethodRetryHandler());
 postMethod.getParams().setParameter(HttpMethodParams.SO_TIMEOUT, 5000);//設置超時時間
 int httpStatus = hc.executeMethod(postMethod);
 String str=postMethod.getResponseBodyAsString();
 T.console("str-------:"+str);

代碼很簡單,就不過多解釋瞭,最後感謝這個坑爹的文檔,又讓我學到瞭一招。

補充:利用HttpClient&PostMethod上傳文件和請求參數

我就廢話不多說瞭,大傢還是直接看代碼吧~

//HttpClient發起請求
public static String sendUrlFile(String url, String jsonstr) { 
 String result = "";
 try { 
 HttpClient httpclient = new HttpClient();
 PostMethod post = new PostMethod(url); 
 FilePart filePart = new FilePart("file", new File("/root/桌面/文檔/記錄.txt"));
 filePart.setCharSet("utf-8"); 
 post.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET, "utf-8");
 //Part數組裝需要傳第的參數和文件等
 Part[] parts = {new StringPart("username",jsonstr , "utf-8"),filePart};
 MultipartRequestEntity entity = new MultipartRequestEntity(parts, post.getParams());
 post.setRequestEntity(entity);
 int code = httpclient.executeMethod(post);
 //拿到響應結果
 result = new String(post.getResponseBody(), "UTF-8");
 //可釋放連接
 post.releaseConnection(); 
 return result;
 } catch (HttpException h) {
 LOGGER.error("cause HttpException:" + h.getMessage()); 
 } catch (Exception i) {
 LOGGER.error("發送請求錯誤: url cause IOException:" + i.getMessage());
 } 
 return "";
}
//接收請求服務器端 參數需要和發送端一致
@ResponseBody
@RequestMapping(value = “/login”)
public JsonResult revice(@RequestParam(“file”) MultipartFile file,@RequestParam(“username”)String username) throws IOException{
InputStream in = file.getInputStream();
OutputStream out = new FileOutputStream("/root/桌面/ok.txt");
byte[] bs = new byte[1024];
int len;
while(-1 != (len = (in.read(bs)))){
out.write(bs);
}
JsonResult json = new JsonResult();
System.out.println();
json.setResult(“ok”);
return json;
}

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。

推薦閱讀: