-集成百度智能识别企业营业执照
parent
814b99043d
commit
8b091f6f05
@ -0,0 +1,43 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 11:36
|
||||||
|
*/
|
||||||
|
public interface BaiduOcrConstant {
|
||||||
|
/**
|
||||||
|
* 编码
|
||||||
|
*/
|
||||||
|
String CHARSET = "UTF-8";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 百度智能云注册的应用程序API Key
|
||||||
|
*/
|
||||||
|
String CLIENT_ID = "YLQSdO65OZjARM8A8ZN62O11";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 百度智能云注册的应用程序Secret Key
|
||||||
|
*/
|
||||||
|
String CLIENT_SECRET = "4fU8odNqBDqNk5W3BS0PDrdk20TGV9sO";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 身份证正面识别OCR接口地址
|
||||||
|
*/
|
||||||
|
String ID_CARD_FRONT_URL = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 身份证混贴识别OCR接口地址
|
||||||
|
*/
|
||||||
|
String ID_CARD_MULTI_URL = "https://aip.baidubce.com/rest/2.0/ocr/v1/multi_idcard";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 营业执照识别OCR接口地址
|
||||||
|
*/
|
||||||
|
String BUSINESS_LICENSE_URL = "https://aip.baidubce.com/rest/2.0/ocr/v1/business_license";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* OCR accessToken获取接口地址
|
||||||
|
*/
|
||||||
|
String ACCESS_TOKEN_URL = "https://aip.baidubce.com/oauth/2.0/token";
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,67 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 11:38
|
||||||
|
*/
|
||||||
|
public class Base64Util {
|
||||||
|
private static final char last2byte = (char) Integer.parseInt("00000011", 2);
|
||||||
|
private static final char last4byte = (char) Integer.parseInt("00001111", 2);
|
||||||
|
private static final char last6byte = (char) Integer.parseInt("00111111", 2);
|
||||||
|
private static final char lead6byte = (char) Integer.parseInt("11111100", 2);
|
||||||
|
private static final char lead4byte = (char) Integer.parseInt("11110000", 2);
|
||||||
|
private static final char lead2byte = (char) Integer.parseInt("11000000", 2);
|
||||||
|
private static final char[] encodeTable = new char[]{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'};
|
||||||
|
|
||||||
|
public Base64Util() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String encode(byte[] from) {
|
||||||
|
StringBuilder to = new StringBuilder((int) ((double) from.length * 1.34D) + 3);
|
||||||
|
int num = 0;
|
||||||
|
char currentByte = 0;
|
||||||
|
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < from.length; ++i) {
|
||||||
|
for (num %= 8; num < 8; num += 6) {
|
||||||
|
switch (num) {
|
||||||
|
case 0:
|
||||||
|
currentByte = (char) (from[i] & lead6byte);
|
||||||
|
currentByte = (char) (currentByte >>> 2);
|
||||||
|
case 1:
|
||||||
|
case 3:
|
||||||
|
case 5:
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
currentByte = (char) (from[i] & last6byte);
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
currentByte = (char) (from[i] & last4byte);
|
||||||
|
currentByte = (char) (currentByte << 2);
|
||||||
|
if (i + 1 < from.length) {
|
||||||
|
currentByte = (char) (currentByte | (from[i + 1] & lead2byte) >>> 6);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
currentByte = (char) (from[i] & last2byte);
|
||||||
|
currentByte = (char) (currentByte << 4);
|
||||||
|
if (i + 1 < from.length) {
|
||||||
|
currentByte = (char) (currentByte | (from[i + 1] & lead4byte) >>> 4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
to.append(encodeTable[currentByte]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (to.length() % 4 != 0) {
|
||||||
|
for (i = 4 - to.length() % 4; i > 0; --i) {
|
||||||
|
to.append("=");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return to.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,46 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 11:37
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class BusinessLicense {
|
||||||
|
|
||||||
|
@Schema(description = "单位名称")
|
||||||
|
private String unitName;
|
||||||
|
|
||||||
|
@Schema(description = "类型")
|
||||||
|
private String unitType;
|
||||||
|
|
||||||
|
@Schema(description = "公司法人")
|
||||||
|
private String legalPerson;
|
||||||
|
|
||||||
|
@Schema(description = "地址")
|
||||||
|
private String address;
|
||||||
|
|
||||||
|
@Schema(description = "有效期")
|
||||||
|
private String validity;
|
||||||
|
|
||||||
|
@Schema(description = "证件编号")
|
||||||
|
private String idNumber;
|
||||||
|
|
||||||
|
@Schema(description = "社会信用代码")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
@Schema(description = "注册资本")
|
||||||
|
private String registeredCapital;
|
||||||
|
|
||||||
|
@Schema(description = "成立日期")
|
||||||
|
private String companyCreateDate;
|
||||||
|
|
||||||
|
@Schema(description = "组成形式")
|
||||||
|
private String layout;
|
||||||
|
|
||||||
|
@Schema(description = "经营范围")
|
||||||
|
private String businessScope;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,127 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
import org.springframework.core.io.ClassPathResource;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import java.io.*;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Paths;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 11:38
|
||||||
|
*/
|
||||||
|
public class FileUtils {
|
||||||
|
/**
|
||||||
|
* 读取classpath下的文件数据
|
||||||
|
*
|
||||||
|
* @param fileClassPath classpath下的文件
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static InputStream readFileStreamWithClassPath(String fileClassPath) {
|
||||||
|
return Thread.currentThread().getContextClassLoader().getResourceAsStream(fileClassPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 读取classpath下的文件数据
|
||||||
|
*
|
||||||
|
* @param fileClassPath classpath下的文件
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static File readFileWithClassPath(String fileClassPath) throws IOException {
|
||||||
|
return new ClassPathResource(fileClassPath).getFile();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 读取classpath下的文件数据
|
||||||
|
*
|
||||||
|
* @param absoluteFilePath 文件绝对路径
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static InputStream readFile(String absoluteFilePath) throws IOException {
|
||||||
|
return Files.newInputStream(Paths.get(absoluteFilePath));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 复制文件到目标路径
|
||||||
|
*
|
||||||
|
* @param sourceFilePath
|
||||||
|
* @param targetFilePath
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
public static void copy(String sourceFilePath, String targetFilePath) throws IOException {
|
||||||
|
Files.copy(Paths.get(sourceFilePath), Paths.get(targetFilePath));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MultipartFile转File
|
||||||
|
* <p>
|
||||||
|
* 选择用缓冲区来实现这个转换即使用java 创建的临时文件 使用 MultipartFile.transferto()方法 。
|
||||||
|
*
|
||||||
|
* @param multipartFile
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static File transferToFile(MultipartFile multipartFile) {
|
||||||
|
File file = null;
|
||||||
|
try {
|
||||||
|
String originalFilename = multipartFile.getOriginalFilename();
|
||||||
|
String[] filename = originalFilename.split("\\.");
|
||||||
|
file = File.createTempFile(filename[0], filename[1]);
|
||||||
|
multipartFile.transferTo(file);
|
||||||
|
file.deleteOnExit();
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return file;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MultipartFile 转 File
|
||||||
|
*
|
||||||
|
* @param file
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public static File multipartFileToFile(MultipartFile file) throws Exception {
|
||||||
|
File toFile = null;
|
||||||
|
InputStream ins;
|
||||||
|
ins = file.getInputStream();
|
||||||
|
toFile = new File(Objects.requireNonNull(file.getOriginalFilename()));
|
||||||
|
inputStreamToFile(ins, toFile);
|
||||||
|
ins.close();
|
||||||
|
return toFile;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取流文件
|
||||||
|
* @param ins
|
||||||
|
* @param file
|
||||||
|
*/
|
||||||
|
private static void inputStreamToFile(InputStream ins, File file) {
|
||||||
|
try {
|
||||||
|
OutputStream os = new FileOutputStream(file);
|
||||||
|
int bytesRead = 0;
|
||||||
|
byte[] buffer = new byte[8192];
|
||||||
|
while ((bytesRead = ins.read(buffer, 0, 8192)) != -1) {
|
||||||
|
os.write(buffer, 0, bytesRead);
|
||||||
|
}
|
||||||
|
os.close();
|
||||||
|
ins.close();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除本地临时文件
|
||||||
|
* @param file
|
||||||
|
*/
|
||||||
|
public static boolean deleteTempFile(File file) {
|
||||||
|
if (file != null) {
|
||||||
|
File del = new File(file.toURI());
|
||||||
|
return del.delete();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,77 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.DataOutputStream;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.net.HttpURLConnection;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 11:39
|
||||||
|
*/
|
||||||
|
public class HttpUtil {
|
||||||
|
public static String post(String requestUrl, String accessToken, String params)
|
||||||
|
throws Exception {
|
||||||
|
String contentType = "application/x-www-form-urlencoded";
|
||||||
|
return HttpUtil.post(requestUrl, accessToken, contentType, params);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String post(String requestUrl, String accessToken, String contentType, String params)
|
||||||
|
throws Exception {
|
||||||
|
String encoding = "UTF-8";
|
||||||
|
if (requestUrl.contains("nlp")) {
|
||||||
|
encoding = "GBK";
|
||||||
|
}
|
||||||
|
return HttpUtil.post(requestUrl, accessToken, contentType, params, encoding);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String post(String requestUrl, String accessToken, String contentType, String params, String encoding)
|
||||||
|
throws Exception {
|
||||||
|
String url = requestUrl + "?access_token=" + accessToken;
|
||||||
|
return HttpUtil.postGeneralUrl(url, contentType, params, encoding);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String postGeneralUrl(String generalUrl, String contentType, String params, String encoding)
|
||||||
|
throws Exception {
|
||||||
|
URL url = new URL(generalUrl);
|
||||||
|
// 打开和URL之间的连接
|
||||||
|
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
|
||||||
|
connection.setRequestMethod("POST");
|
||||||
|
// 设置通用的请求属性
|
||||||
|
connection.setRequestProperty("Content-Type", contentType);
|
||||||
|
connection.setRequestProperty("Connection", "Keep-Alive");
|
||||||
|
connection.setUseCaches(false);
|
||||||
|
connection.setDoOutput(true);
|
||||||
|
connection.setDoInput(true);
|
||||||
|
|
||||||
|
// 得到请求的输出流对象
|
||||||
|
DataOutputStream out = new DataOutputStream(connection.getOutputStream());
|
||||||
|
out.write(params.getBytes(encoding));
|
||||||
|
out.flush();
|
||||||
|
out.close();
|
||||||
|
|
||||||
|
// 建立实际的连接
|
||||||
|
connection.connect();
|
||||||
|
// 获取所有响应头字段
|
||||||
|
Map<String, List<String>> headers = connection.getHeaderFields();
|
||||||
|
// 遍历所有的响应头字段
|
||||||
|
for (String key : headers.keySet()) {
|
||||||
|
System.err.println(key + "--->" + headers.get(key));
|
||||||
|
}
|
||||||
|
// 定义 BufferedReader输入流来读取URL的响应
|
||||||
|
BufferedReader in = null;
|
||||||
|
in = new BufferedReader(
|
||||||
|
new InputStreamReader(connection.getInputStream(), encoding));
|
||||||
|
String result = "";
|
||||||
|
String getLine;
|
||||||
|
while ((getLine = in.readLine()) != null) {
|
||||||
|
result += getLine;
|
||||||
|
}
|
||||||
|
in.close();
|
||||||
|
System.err.println("result:" + result);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 11:37
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class IdCard {
|
||||||
|
|
||||||
|
@Schema(description = "姓名")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
@Schema(description = "性别")
|
||||||
|
private String sex;
|
||||||
|
|
||||||
|
@Schema(description = "民族")
|
||||||
|
private String nation;
|
||||||
|
|
||||||
|
@Schema(description = "出生日期")
|
||||||
|
private String birthDate;
|
||||||
|
|
||||||
|
@Schema(description = "住址")
|
||||||
|
private String address;
|
||||||
|
|
||||||
|
@Schema(description = "公民身份号码")
|
||||||
|
private String cardNumber;
|
||||||
|
|
||||||
|
@Schema(description = "签发机关")
|
||||||
|
private String signOrg;
|
||||||
|
|
||||||
|
@Schema(description = "签发日期")
|
||||||
|
private String signDate;
|
||||||
|
|
||||||
|
@Schema(description = "失效日期")
|
||||||
|
private String expiredDate;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 14:08
|
||||||
|
*/
|
||||||
|
public class LicenseKeywords {
|
||||||
|
public static final String UNIT_NAME = "单位名称";
|
||||||
|
public static final String BUSINESS_SCOPE = "经营范围";
|
||||||
|
public static final String LAYOUT = "组成形式";
|
||||||
|
public static final String UNIT_TYPE = "类型";
|
||||||
|
public static final String LEGAL_PERSON = "法定代表人";
|
||||||
|
public static final String ADDRESS = "地址";
|
||||||
|
public static final String CODE = "社会信用代码";
|
||||||
|
public static final String ID_NUMBER = "证件编号";
|
||||||
|
public static final String VALIDITY = "有效期";
|
||||||
|
public static final String REGISTERED_CAPITAL = "注册资本";
|
||||||
|
public static final String COMPANY_CREATE_DATE = "成立日期";
|
||||||
|
}
|
Loading…
Reference in New Issue