本文主要是介绍HttpPost接口请求的数据传输方式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
第一种:以json字符串的格式传递
xmlInfo是要传递的json字符串(如何把数据转化为json格式可参考我的json转化文章),apiKeyId是我的实际业务需要传递的一个值,不需要可取消,,url是请求路径
public static String doHttpPostWithSSL(String xmlInfo, String URL,String apiKeyId) {log.info("发起的数据:" + xmlInfo);String result =null;try (CloseableHttpClient client = new SSLClient()){HttpResponse response = null;HttpEntity responseEntity = null;HttpPost request = new HttpPost();request.setHeader("KeyId", apiKeyId);request.setHeader(APP_CODE, FMS_CODE);request.setHeader("Content-Type", "application/json; charset=utf-8");request.setURI(new URI(URL));request.setEntity(new StringEntity(xmlInfo, "UTF-8"));response = client.execute(request);responseEntity = response.getEntity();result = EntityUtils.toString(responseEntity);} catch (Exception e) {e.printStackTrace();}log.info("返回的数据:" + result);return result;}
这种格式对应的postman演示:
第二种:以form-data的格式传递
这种格式可传递多种类型的数据,包括file文件,就是类似表单提交
public static String ocrDistinguish(String jsonString,String url,File file) throws ClientProtocolException, IOException {Map<String,String> map = JsonMapper.MAPPER.toMap(jsonString);MultipartEntityBuilder builder = MultipartEntityBuilder.create().setMode(HttpMultipartMode.BROWSER_COMPATIBLE).setCharset(Charset.forName("UTF-8")).addPart("file", new FileBody(file)).addTextBody("ifNeedOcr", map.get("ifNeedOcr")).addTextBody("pathCode",map.get("pathCode")).addTextBody("reqUuid", map.get("reqUuid")).addTextBody("orgCode", map.get("orgCode")).addTextBody("appId", map.get("appId")).addTextBody("appKey", map.get("appKey")).addTextBody("appSecret", map.get("appSecret"));if (StringUtils.isNotBlank(map.get("fileId"))) builder.addTextBody("fileId", map.get("fileId"));if (StringUtils.isNotBlank(map.get("docType"))) builder.addTextBody("docType", map.get("docType"));return Request.Post(url).socketTimeout(100000).connectTimeout(100000).body(builder.build()).execute().returnContent().asString();}
}
这种格式对应的postman演示:
这篇关于HttpPost接口请求的数据传输方式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!