From 77c7f3c20a64a724b0f8eea6855e3d237508a108 Mon Sep 17 00:00:00 2001 From: zoujiangtao Date: Mon, 9 Dec 2024 11:21:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=86=85=E5=AE=B9=EF=BC=9AAP?= =?UTF-8?q?I=E6=98=A0=E5=B0=84=E5=85=AC=E5=85=B1=E5=8D=95=E6=8D=AE=20?= =?UTF-8?q?=E5=A4=87=E6=B3=A8=EF=BC=9A=E4=BB=98=E6=AC=BE=E5=A4=84=E7=90=86?= =?UTF-8?q?=E8=81=94=E8=B0=83=E6=B5=8B=E8=AF=95=20=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E4=BA=BA=EF=BC=9A=E9=82=B9=E6=B1=9F=E6=B6=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sys/plugin/form/ApiMappingBillPlugin.java | 60 ++++++++++++++++++- 1 file changed, 57 insertions(+), 3 deletions(-) diff --git a/sys/shkd-sys-sys/src/main/java/shkd/sys/sys/plugin/form/ApiMappingBillPlugin.java b/sys/shkd-sys-sys/src/main/java/shkd/sys/sys/plugin/form/ApiMappingBillPlugin.java index f8bef17..d8df604 100644 --- a/sys/shkd-sys-sys/src/main/java/shkd/sys/sys/plugin/form/ApiMappingBillPlugin.java +++ b/sys/shkd-sys-sys/src/main/java/shkd/sys/sys/plugin/form/ApiMappingBillPlugin.java @@ -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 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)) {