智能仲裁后端服务

OCRUtils.java 5.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.ruoyi.wisdomarbitrate.utils;
  2. import com.tencentcloudapi.bsca.v20210811.models.LicenseSummary;
  3. import com.tencentcloudapi.common.Credential;
  4. import com.tencentcloudapi.common.exception.TencentCloudSDKException;
  5. import com.tencentcloudapi.common.profile.ClientProfile;
  6. import com.tencentcloudapi.common.profile.HttpProfile;
  7. import com.tencentcloudapi.ocr.v20181119.OcrClient;
  8. import com.tencentcloudapi.ocr.v20181119.models.SmartStructuralOCRV2Request;
  9. import com.tencentcloudapi.ocr.v20181119.models.SmartStructuralOCRV2Response;
  10. import org.json.JSONArray;
  11. import org.json.JSONObject;
  12. import java.util.ArrayList;
  13. import java.util.List;
  14. public class OCRUtils {
  15. //API的SecretId
  16. private static final String SECRET_ID = "AKIDeEf2A8uX1HSainvvnXAc3X9ZlhtyvkMp";
  17. //API的SecretKey
  18. private static final String SECRET_KEY = "QjphKo8zkHZigT8j9PVtFPJyfIvO3d6V";
  19. public static String pdfIdentifyText(String ImageUrl, Integer PageNumber) {
  20. try {
  21. // 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
  22. // 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305
  23. // 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
  24. Credential cred = new Credential(SECRET_ID, SECRET_KEY);
  25. // 实例化一个http选项,可选的,没有特殊需求可以跳过
  26. HttpProfile httpProfile = new HttpProfile();
  27. httpProfile.setEndpoint("ocr.tencentcloudapi.com");
  28. // 实例化一个client选项,可选的,没有特殊需求可以跳过
  29. ClientProfile clientProfile = new ClientProfile();
  30. clientProfile.setHttpProfile(httpProfile);
  31. // 实例化要请求产品的client对象,clientProfile是可选的
  32. OcrClient client = new OcrClient(cred, "ap-beijing", clientProfile);
  33. // 实例化一个请求对象,每个接口都会对应一个request对象
  34. SmartStructuralOCRV2Request req = new SmartStructuralOCRV2Request();
  35. req.setImageUrl(ImageUrl);
  36. req.setIsPdf(true);
  37. req.setPdfPageNumber(PageNumber.longValue());
  38. String[] itemNames1 = {"申请人", "统一社会信用代码", "法定代表人", "住所", "联系地址", "委托代理人"
  39. , "联系电话", "电子邮件", "被申请人", "居民身份证号码", "住所", "联系电话", "电子邮件", "仲裁请求"
  40. , "事实和理由"};
  41. req.setItemNames(itemNames1);
  42. // 返回的resp是一个SmartStructuralOCRV2Response的实例,与请求对象对应
  43. SmartStructuralOCRV2Response resp = client.SmartStructuralOCRV2(req);
  44. // 输出json格式的字符串回包
  45. System.out.println(SmartStructuralOCRV2Response.toJsonString(resp));
  46. //解析数据
  47. String s = SmartStructuralOCRV2Response.toJsonString(resp);
  48. // 解析JSON数据
  49. JSONObject jsonObject = new JSONObject(s);
  50. JSONArray structuralList = jsonObject.getJSONArray("StructuralList");
  51. // 遍历StructuralList中的Groups,获取Key对应的AutoName和Value对应的AutoConten
  52. StringBuilder stringBuilder = new StringBuilder(); // 创建一个StringBuilder对象
  53. for (int i = 0; i < structuralList.length(); i++) {
  54. JSONArray groups = structuralList.getJSONObject(i).getJSONArray("Groups");
  55. for (int j = 0; j < groups.length(); j++) {
  56. JSONArray lines = groups.getJSONObject(j).getJSONArray("Lines");
  57. for (int k = 0; k < lines.length(); k++) {
  58. JSONObject line = lines.getJSONObject(k);
  59. JSONObject key = line.getJSONObject("Key");
  60. JSONObject value = line.getJSONObject("Value");
  61. String autoName = key.getString("AutoName");
  62. String autoContent = value.getString("AutoContent");
  63. String text = autoName + ":" + autoContent;
  64. if (stringBuilder.length() > 0) {
  65. stringBuilder.append(","); // 在已有内容的情况下添加逗号分隔符
  66. }
  67. stringBuilder.append(text); // 拼接当前的字符串
  68. }
  69. }
  70. }
  71. return stringBuilder.toString(); // 获取最终的拼接结果
  72. } catch (TencentCloudSDKException e) {
  73. System.out.println(e.toString());
  74. }
  75. return null;
  76. }
  77. public static void main(String[] args) {
  78. String input = "申请人:招商银行,住所:上海嘉定区,联系地址:上海徐汇区,法定代表人:招商法人,委托代理人:黄海龙,被申请人:白贵勇,住所:陕西,联系地址:陕西,仲裁请求:仲裁委主任依据《2022年版仲裁规则》第三十一条第(四)项、第三十二条的规定指定白贵勇仲裁员为仲裁庭的仲裁员。本案由白贵勇仲裁员成立仲裁庭进行审理。,事实和理由:(一)申请人的仲裁请求及事实和理由,申请人:债务纠纷";
  79. String[] fields = input.split(",");
  80. JSONObject jsonObject = new JSONObject(); // 创建一个空的JSON对象
  81. for (String field : fields) {
  82. // 对于每个字段,再按冒号分隔符拆分出键和值
  83. String[] keyValue = field.split(":");
  84. if (keyValue.length == 2) { // 对于合法的键值对,将其添加到JSON对象中
  85. jsonObject.put(keyValue[0], keyValue[1]);
  86. }
  87. }
  88. System.out.println(jsonObject.toString());
  89. }
  90. }