java 利用HttpClient PostMethod提交json數(shù)據(jù)操作
故事前要
今天,在做公司的一個(gè)項(xiàng)目,需要和第三方公司進(jìn)行對(duì)接,需要將我們采集到的數(shù)據(jù)發(fā)送給第三方公司,按照對(duì)方提供的文檔,傳遞好參數(shù)后,httpclient.execute(method)請(qǐng)求后,得到的狀態(tài)碼 ,一直是502,猶豫第一次使用HttpClient post json數(shù)據(jù),一直懷疑是自己的代碼問題,最后不知在哪個(gè)技術(shù)論壇看到 ,有人問url請(qǐng)求中有空格怎么辦,突然發(fā)現(xiàn)對(duì)方提供的pdf文檔中 竟然包含空格,而我天真的無視掉了 以為是文檔的問題。
算了…… 不多BB了….
PostMethod請(qǐng)求注意兩點(diǎn):
1、如果使用的是公司的服務(wù)器,設(shè)置好代理和端口。
2、如果url中有空格,需要使用%20 進(jìn)行轉(zhuǎn)義。
貼一下我的代碼 ,給不會(huì)還沒用過不會(huì)PostMethod請(qǐng)求的萌新們…
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è)置超時(shí)時(shí)間
int httpStatus = hc.executeMethod(postMethod);
String str=postMethod.getResponseBodyAsString();
T.console("str-------:"+str);
代碼很簡單,就不過多解釋了,最后感謝這個(gè)坑爹的文檔,又讓我學(xué)到了一招。
補(bǔ)充:利用HttpClient&PostMethod上傳文件和請(qǐng)求參數(shù)
我就廢話不多說了,大家還是直接看代碼吧~
//HttpClient發(fā)起請(qǐng)求
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ā)送請(qǐng)求錯(cuò)誤: url cause IOException:" + i.getMessage());
}
return "";
}
//接收請(qǐng)求服務(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;
}
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
相關(guān)文章
spring boot實(shí)現(xiàn)驗(yàn)證碼功能
Spring Boot是由Pivotal團(tuán)隊(duì)提供的全新框架,其設(shè)計(jì)目的是用來簡化新Spring應(yīng)用的初始搭建以及開發(fā)過程。這篇文章主要介紹了spring boot實(shí)現(xiàn)驗(yàn)證碼功能,需要的朋友可以參考下2018-04-04
java synchronized實(shí)現(xiàn)可見性過程解析
這篇文章主要介紹了java synchronized實(shí)現(xiàn)可見性過程解析,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-09-09
淺談Java中的集合存儲(chǔ)數(shù)據(jù)后,輸出數(shù)據(jù)的有序和無序問題
這篇文章主要介紹了淺談Java中的集合存儲(chǔ)數(shù)據(jù)后,輸出數(shù)據(jù)的有序和無序問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-09-09
HashMap vs TreeMap vs Hashtable vs LinkedHashMap
這篇文章主要介紹了HashMap vs TreeMap vs Hashtable vs LinkedHashMap的相關(guān)知識(shí),非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-07-07
ByteArrayOutputStream簡介和使用_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理
ByteArrayOutputStream 是字節(jié)數(shù)組輸出流。它繼承于OutputStream。這篇文章主要介紹了ByteArrayOutputStream簡介和使用,需要的朋友可以參考下2017-05-05

