修改http请求工具类入参拼写错误

This commit is contained in:
大水牛 2018-03-12 18:54:37 +08:00 committed by GitHub
parent 295fb256c7
commit 34533c16b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ public class HttpClientUtil {
/** /**
* post request * post request
*/ */
public static byte[] postRequest(String reqURL, byte[] date) throws Exception { public static byte[] postRequest(String reqURL, byte[] data) throws Exception {
byte[] responseBytes = null; byte[] responseBytes = null;
HttpPost httpPost = new HttpPost(reqURL); HttpPost httpPost = new HttpPost(reqURL);
@ -53,8 +53,8 @@ public class HttpClientUtil {
httpPost.setConfig(requestConfig); httpPost.setConfig(requestConfig);
// data // data
if (date != null) { if (data != null) {
httpPost.setEntity(new ByteArrayEntity(date, ContentType.DEFAULT_BINARY)); httpPost.setEntity(new ByteArrayEntity(data, ContentType.DEFAULT_BINARY));
} }
// do post // do post
HttpResponse response = httpClient.execute(httpPost); HttpResponse response = httpClient.execute(httpPost);