2020-12-31 16:38:20 +08:00
|
|
|
|
package com.cescit.integrity;
|
|
|
|
|
|
2023-10-24 13:03:14 +08:00
|
|
|
|
import org.json.JSONException;
|
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
import java.io.InputStreamReader;
|
|
|
|
|
import java.net.HttpURLConnection;
|
|
|
|
|
import java.net.URL;
|
2023-10-24 13:03:14 +08:00
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
public class HttpUtil {
|
|
|
|
|
|
2023-10-24 13:03:14 +08:00
|
|
|
|
public static String getHttpRequestData(String urlPath,Map<String,String>header) {
|
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 首先抓取异常并处理
|
|
|
|
|
String returnString = "";
|
|
|
|
|
try{
|
|
|
|
|
// 代码实现以GET请求方式为主,POST跳过
|
|
|
|
|
/** 1 GET方式请求数据 start*/
|
2023-10-24 13:03:14 +08:00
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 1 创建URL对象,接收用户传递访问地址对象链接
|
|
|
|
|
URL url = new URL(urlPath);
|
2023-10-24 13:03:14 +08:00
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 2 打开用户传递URL参数地址
|
|
|
|
|
HttpURLConnection connect = (HttpURLConnection) url.openConnection();
|
|
|
|
|
// 3 设置HTTP请求的一些参数信息
|
|
|
|
|
connect.setRequestMethod("GET"); // 参数必须大写
|
2023-10-24 13:03:14 +08:00
|
|
|
|
if(header!=null && header.isEmpty()){
|
|
|
|
|
for(String key:header.keySet()){
|
|
|
|
|
connect.setRequestProperty(key, header.get(key));
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-31 16:38:20 +08:00
|
|
|
|
connect.connect();
|
2023-10-24 13:03:14 +08:00
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 4 获取URL请求到的数据,并创建数据流接收
|
|
|
|
|
InputStream isString = connect.getInputStream();
|
2023-10-24 13:03:14 +08:00
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 5 构建一个字符流缓冲对象,承载URL读取到的数据
|
|
|
|
|
BufferedReader isRead = new BufferedReader(new InputStreamReader(isString));
|
2023-10-24 13:03:14 +08:00
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 6 输出打印获取到的文件流
|
|
|
|
|
String str = "";
|
|
|
|
|
while ((str = isRead.readLine()) != null) {
|
|
|
|
|
str = new String(str.getBytes(),"UTF-8"); //解决中文乱码问题
|
|
|
|
|
// System.out.println("文件解析打印:");
|
|
|
|
|
// System.out.println(str);
|
|
|
|
|
returnString += str;
|
|
|
|
|
}
|
2023-10-24 13:03:14 +08:00
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 7 关闭流
|
|
|
|
|
isString.close();
|
|
|
|
|
connect.disconnect();
|
2023-10-24 13:03:14 +08:00
|
|
|
|
|
2020-12-31 16:38:20 +08:00
|
|
|
|
// 8 JSON转List对象
|
|
|
|
|
// do somthings
|
|
|
|
|
}catch(Exception e){
|
2023-10-24 13:03:14 +08:00
|
|
|
|
try {
|
|
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
|
|
jsonObject.put("ResIntegrity",true);
|
|
|
|
|
jsonObject.put("AssetsIntegrity",true);
|
|
|
|
|
jsonObject.put("DebugDetection",true);
|
|
|
|
|
return jsonObject.toString();
|
|
|
|
|
} catch (JSONException jsonException) {
|
|
|
|
|
}
|
2020-12-31 16:38:20 +08:00
|
|
|
|
}
|
|
|
|
|
return returnString;
|
2023-10-24 13:03:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|