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'); //默認(rèn)的重試策略 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);
代碼很簡單,就不過多解釋了,最后感謝這個坑爹的文檔,又讓我學(xué)到了一招。
補充:利用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)驗,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。如有錯誤或未考慮完全的地方,望不吝賜教。
相關(guān)文章:
1. python 實現(xiàn)rolling和apply函數(shù)的向下取值操作2. vue3?Error:Unknown?variable?dynamic?import:?../views/的解決方案3. 刪除docker里建立容器的操作方法4. CSS代碼檢查工具stylelint的使用方法詳解5. WML語言的基本情況6. Python的Tqdm模塊實現(xiàn)進度條配置7. 淺談python多線程和多線程變量共享問題介紹8. react axios 跨域訪問一個或多個域名問題9. Python 多線程之threading 模塊的使用10. Properties 持久的屬性集的實例詳解
