2/25 优化1.0

axxyy
wangwei 1 month ago
parent f45166c392
commit 189de7b247

@ -5,6 +5,8 @@ import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.exceptions.ExceptionUtil; import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpResponse;
import cn.hutool.json.JSONUtil; import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
@ -69,9 +71,15 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.xml.bind.JAXBException; import javax.xml.bind.JAXBException;
import java.io.OutputStream;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URLEncoder;
import java.util.*; import java.util.*;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import java.net.HttpURLConnection;
import java.net.URL;
/** /**
* Client * Client
@ -136,24 +144,25 @@ public class AxxyyClient extends CommonHttpClient {
*/ */
public String getMsgHeader(String methodName) { public String getMsgHeader(String methodName) {
return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
"<root>" + "<root>\n" +
"<serverName>" + methodName + "</serverName>" + "<serverName>" + methodName + "</serverName>\n" +
"<format>" + "xml" + "</format>" + "<format>" + "xml" + "</format>\n" +
"<callOperator>" + "" + "</callOperator>" + "<callOperator>" + "" + "</callOperator>\n" +
"<certificate>" + "ousrgPVbTpn7ckRUZWypfBR7tGWi2EINBp4vIHOS44V/jN3U5dD+5A==" + "</certificate>" + "<certificate>" + "ousrgPVbTpn7ckRUZWypfBR7tGWi2EINBp4vIHOS44V/jN3U5dD+5A==" + "</certificate>\n" +
"</root>"; "</root>";
} }
public String setFilter() { public String setFilter() {
return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
"<root>" + "<root>\n" +
// "<code>" + "" + "</code>" + // "<code>" + "" + "</code>\n" +
"<name>" + "红细胞寿命测定-呼气法" + "</name>" + "<name>" + "红细胞寿命测定-呼气法" + "</name>\n" +
// "<spell>" + "" + "</spell>" + // "<spell>" + "" + "</spell>\n" +
// "<invalid>" + "" + "</invalid>" + // "<invalid>" + "" + "</invalid>\n" +
// "<subject>" + "" + "</subject>" + // "<subject>" + "" + "</subject>\n" +
"</root>"; "</root>";
} }
/** /**
@ -947,26 +956,58 @@ public class AxxyyClient extends CommonHttpClient {
@Override @Override
public BaseResponse getBasicProject(DlThirdProjectRequest dlThirdProjectRequest) { public BaseResponse getBasicProject(DlThirdProjectRequest dlThirdProjectRequest) {
CtqyyRequest ctqyyRequest = new CtqyyRequest(); CtqyyRequest ctqyyRequest = new CtqyyRequest();
String getPriceDict = getMsgHeader("getPriceDict"); String getPriceDict = getMsgHeader("getPriceDict");
String s = setFilter(); String s = setFilter();
log.error("DANGQIAN 请求头:::" + getPriceDict); log.error("DANGQIAN 请求头:::" + getPriceDict);
log.error("DANGQIAN 请求体:::" + s); log.error("DANGQIAN 请求体:::" + s);
ctqyyRequest.setMsgHeader(getMsgHeader("getPriceDict"));
ctqyyRequest.setMsgBody(setFilter());
String response = httpClient.postJson(thrSystemDetailService.getUrlExclude(Constants.URI_GET_PROJECT), ctqyyRequest);
try { try {
List<PriceDict> priceDicts = JAXBUtil.unmarshalAndGetList(ProductVo.class, PriceDict.class, response); String response = callInterface(getMsgHeader("getPriceDict"), setFilter());
log.error("获取到 智业返回产品信息:::::::::::::::::::::" + priceDicts); System.out.println("Response: " + response);
} catch (Exception e) { } catch (Exception e) {
log.error("解析安溪县医院智业返回项目信息数据异常,返回结果:{}", response); log.error("解析安溪县医院智业返回项目信息数据异常,返回结果:{}", e);
log.error("异常信息:{}", e); log.error("异常信息:{}", e);
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")"); e.printStackTrace();
} }
return null; return null;
} }
public static String callInterface(String msgHeader, String msgBody) throws Exception {
URL url = new URL("http://173.19.192.196:8882/OTHER/BtmsEntranceWs?wsdl");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "application/xml");
connection.setDoOutput(true);
String requestBody = "<request>\n" +
" <msgHeader>" + msgHeader + "</msgHeader>\n" +
" <msgBody>" + msgBody + "</msgBody>\n" +
"</request>";
try (OutputStream os = connection.getOutputStream()) {
byte[] input = requestBody.getBytes("utf-8");
os.write(input, 0, input.length);
}
int responseCode = connection.getResponseCode();
log.error("Response Code: " + responseCode);
if (responseCode == HttpURLConnection.HTTP_OK) {
// 读取响应
java.util.Scanner scanner = new java.util.Scanner(connection.getInputStream()).useDelimiter("\\A");
String response = scanner.hasNext() ? scanner.next() : "";
log.error("Response Body: " + response);
return scanner.hasNext() ? scanner.next() : "";
} else {
log.error("HTTP error code : " + responseCode);
throw new RuntimeException("HTTP error code : " + responseCode);
}
}
// public String parserResult(String response) { // public String parserResult(String response) {
// if (response.contains("<root")) { // if (response.contains("<root")) {
// try { // try {
@ -984,4 +1025,6 @@ public class AxxyyClient extends CommonHttpClient {
} }

@ -0,0 +1,32 @@
package com.glxp.mipsdl.client.axxyy;
/**
* @author : zhuzhu
* @date : 2025/3/3 11:09
* @modyified By :
*/
public class XmlBuilder {
public static String buildMsgHeader(String serverName, String callOperator, String certificate) {
return "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" +
"<root>\n" +
" <serverName>" + serverName + "</serverName>\n" +
" <format>xml</format>\n" +
" <callOperator>" + callOperator + "</callOperator>\n" +
" <certificate>" + certificate + "</certificate>\n" +
"</root>";
}
public static String buildMsgBody(String code, String name, String spell, String invalid, String isunit, String includeward, String hospart) {
return "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" +
"<root>\n" +
" <code>" + code + "</code>\n" +
" <name>" + name + "</name>\n" +
" <spell>" + spell + "</spell>\n" +
" <invalid>" + invalid + "</invalid>\n" +
" <isunit>" + isunit + "</isunit>\n" +
" <includeward>" + includeward + "</includeward>\n" +
" <hospart>" + hospart + "</hospart>\n" +
"</root>";
}
}
Loading…
Cancel
Save