|
|
@@ -405,6 +405,7 @@ public class HttpUtil {
|
|
|
}
|
|
|
|
|
|
public static String httpsRequest(String requestUrl, String requestMethod, String outputStr,InputStream certInputStream,String keyPassword) {
|
|
|
+ logger.info("post请求url:{},参数:requestMethod {},outputStr {},keyPassword {}",requestUrl,requestMethod,outputStr,keyPassword);
|
|
|
SSLContext sslContext = null;
|
|
|
HttpsURLConnection conn = null;
|
|
|
InputStream inputStream = null;
|
|
|
@@ -450,6 +451,7 @@ public class HttpUtil {
|
|
|
while ((str = bufferedReader.readLine()) != null) {
|
|
|
buffer.append(str);
|
|
|
}
|
|
|
+ logger.info("返回结果:{}",buffer);
|
|
|
// 释放资源
|
|
|
return buffer.toString();
|
|
|
}
|