java 利用HttpClient PostMethod提交json數(shù)據(jù)操作
故事前要
今天,在做公司的一個項目,需要和第三方公司進行對接,需要將我們采集到的數(shù)據(jù)發(fā)送給第三方公司,按照對方提供的文檔,傳遞好參數(shù)后,httpclient.execute(method)請求后,得到的狀態(tài)碼 ,一直是502,猶豫第一次使用HttpClient post json數(shù)據(jù),一直懷疑是自己的代碼問題,最后不知在哪個技術(shù)論壇看到 ,有人問url請求中有空格怎么辦,突然發(fā)現(xiàn)對方提供的pdf文檔中 竟然包含空格,而我天真的無視掉了 以為是文檔的問題。
算了…… 不多BB了….
PostMethod請求注意兩點:
1、如果使用的是公司的服務(wù)器,設(shè)置好代理和端口。
2、如果url中有空格,需要使用%20 進行轉(zhuǎn)義。
貼一下我的代碼 ,給不會還沒用過不會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);//設(shè)置超時時間 int httpStatus = hc.executeMethod(postMethod); String str=postMethod.getResponseBodyAsString(); T.console("str-------:"+str);
代碼很簡單,就不過多解釋了,最后感謝這個坑爹的文檔,又讓我學到了一招。
補充:利用HttpClient&PostMethod上傳文件和請求參數(shù)
我就廢話不多說了,大家還是直接看代碼吧~
//HttpClient發(fā)起請求 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數(shù)組裝需要傳第的參數(shù)和文件等 Part[] parts = {new StringPart("username",jsonstr , "utf-8"),filePart}; MultipartRequestEntity entity = new MultipartRequestEntity(parts, post.getParams()); post.setRequestEntity(entity); int code = httpclient.executeMethod(post); //拿到響應(yīng)結(jié)果 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("發(fā)送請求錯誤: url cause IOException:" + i.getMessage()); } return ""; } //接收請求服務(wù)器端 參數(shù)需要和發(fā)送端一致
@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; }
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。
相關(guān)文章
javaweb頁面附件、圖片下載及打開(實現(xiàn)方法)
下面小編就為大家?guī)硪黄猨avaweb頁面附件、圖片下載及打開(實現(xiàn)方法)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-06-06LinkedList學習示例模擬堆棧與隊列數(shù)據(jù)結(jié)構(gòu)
這篇文章主要介紹了LinkedList學習示例,模擬一個堆棧與隊列數(shù)據(jù)結(jié)構(gòu),大家參考使用吧2014-01-01jedis獲取redis中二進制圖片轉(zhuǎn)Base64方式
這篇文章主要介紹了jedis獲取redis中二進制圖片轉(zhuǎn)Base64方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-07-07Java中計算集合中元素的出現(xiàn)次數(shù)統(tǒng)計
本文主要介紹了Java中計算集合中元素的出現(xiàn)次數(shù)統(tǒng)計,使用Collections類配合HashMap來統(tǒng)計和java lamb 計算這兩種方式,具有一定的參考價值,感興趣可以了解一下2024-02-02