提交内容:API映射公共单据

备注:付款处理联调测试
提交人:邹江涛
This commit is contained in:
zoujiangtao 2024-12-09 11:21:44 +08:00
parent 8760747658
commit 77c7f3c20a
1 changed files with 57 additions and 3 deletions

View File

@ -19,7 +19,13 @@ import kd.sdk.plugin.Plugin;
import shkd.sys.sys.common.ApiEntity;
import shkd.sys.sys.mservice.ApiService;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.math.BigDecimal;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.*;
/**
@ -144,7 +150,7 @@ public class ApiMappingBillPlugin extends AbstractFormPlugin implements Plugin {
}
if ("shkd_testapi".equals(itemKey)) {
//域名
/*//域名
String domainName = dataEntity.getString("shkd_domainname");
//url
String url = dataEntity.getString("shkd_url");
@ -161,8 +167,56 @@ public class ApiMappingBillPlugin extends AbstractFormPlugin implements Plugin {
apiEntity.setQueryParams(paramsMap);
apiEntity.setRequestBody(codeEdit.getText());
logger.info("调用接口实体对象apiEntity → 返回结果:{}", apiEntity);
JSONObject responseBody = ApiEntity.getResponseBody(apiEntity);
this.getView().showTipNotification("返回结果:" + responseBody.toJSONString());
JSONObject responseBody = ApiEntity.getResponseBody(apiEntity);*/
//响应数据
String formattedContent;
try {
//域名
String domainName = dataEntity.getString("shkd_domainname");
Map<String, Object> resultMap = ApiService.getBIPToken(domainName);
// 请求URL
URL url = new URL(dataEntity.getString("shkd_url") + "?access_token=" + resultMap.get("token"));
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置请求方法为POST
connection.setRequestMethod("POST");
// 设置请求头
connection.setRequestProperty("Content-Type", "application/json");
// 允许输出
connection.setDoOutput(true);
// 写入请求体
try (OutputStream os = connection.getOutputStream()) {
byte[] input = codeEdit.getText().getBytes(StandardCharsets.UTF_8);
os.write(input, 0, input.length);
}
// 获取响应码
int responseCode = connection.getResponseCode();
// 这里可以进一步读取响应内容根据实际情况处理
// 读取响应内容
if (responseCode == HttpURLConnection.HTTP_OK) { // 成功响应
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream(), StandardCharsets.UTF_8));
String inputLine;
StringBuilder content = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
// 替换 \n 为实际的换行符
formattedContent = content.toString().replace("\\n", "\n").replace("\\","");
} else {
formattedContent = "响应失败";
}
} catch (Exception e) {
formattedContent = "请求失败," + e.getMessage();
}
this.getView().showTipNotification("返回结果:" + formattedContent);
}
if ("shkd_gettoken".equals(itemKey)) {