71 lines
2.2 KiB
Java
Raw Normal View History

2020-12-31 16:38:20 +08:00
package com.cescit.integrity;
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;
import java.util.Map;
2020-12-31 16:38:20 +08:00
public class HttpUtil {
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*/
2020-12-31 16:38:20 +08:00
// 1 创建URL对象,接收用户传递访问地址对象链接
URL url = new URL(urlPath);
2020-12-31 16:38:20 +08:00
// 2 打开用户传递URL参数地址
HttpURLConnection connect = (HttpURLConnection) url.openConnection();
// 3 设置HTTP请求的一些参数信息
connect.setRequestMethod("GET"); // 参数必须大写
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();
2020-12-31 16:38:20 +08:00
// 4 获取URL请求到的数据并创建数据流接收
InputStream isString = connect.getInputStream();
2020-12-31 16:38:20 +08:00
// 5 构建一个字符流缓冲对象,承载URL读取到的数据
BufferedReader isRead = new BufferedReader(new InputStreamReader(isString));
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;
}
2020-12-31 16:38:20 +08:00
// 7 关闭流
isString.close();
connect.disconnect();
2020-12-31 16:38:20 +08:00
// 8 JSON转List对象
// do somthings
}catch(Exception e){
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;
}
}