基于SpringBoot调用百度ocr以及企查查接口实现对营业执照信息的提取并识别真伪

  • 1、application.yml
  • 2、Controller层接口
  • 3、相关工具类
    • 3.1 DateUtils
    • 3.2 Http请求工具类

1、application.yml

#企查查配置
qichacha:key: 60f3fb2adac94455bc49652c6090974dsecret: 3C09698691DCF8F45EB71317F1A25CCC

2、Controller层接口

    @Autowiredprivate IMailService mailService;@Value("${qichacha.key}")private String key;@Value("${qichacha.secret}")private String secret;/*** 营业执照识别真伪*/@GetMapping("business_license")public BusinessLicInfo businessLicense(){//获取本地的绝对路径图片File file = new File("D:\\3.png");//进行BASE64位编码String imageBase = BASE64.encodeImgageToBase64(file);imageBase = imageBase.replaceAll("\r\n", "");imageBase = imageBase.replaceAll("\\+", "%2B");//百度云的文字识别接口,后面参数为获取到的tokenString httpUrl = "https://aip.baidubce.com/rest/2.0/ocr/v1/business_license?access_token="+BaiDuOCR.getAuth();//id_card_side=front 识别正面    id_card_side=back  识别背面String httpArg = "detect_direction=true&id_card_side=front&image=" + imageBase;String jsonResult = BaiDuOCR.request(httpUrl, httpArg);System.out.println("返回的结果--------->" + jsonResult);HashMap<String, String> map = BaiDuOCR.getBusniessLicHashMap(jsonResult);BusinessLicInfo businessLicInfo = new BusinessLicInfo();businessLicInfo.setAddress(map.get("地址"));businessLicInfo.setCeo(map.get("法人"));businessLicInfo.setCode(map.get("证件编号"));businessLicInfo.setCompanyName(map.get("单位名称"));businessLicInfo.setCreditId(map.get("社会信用代码"));businessLicInfo.setDate(map.get("有效期"));businessLicInfo.setType(map.get("类型"));//判断营业执照的真伪String url = "http://api.qichacha.com/ECIMatch/CompanyVerify?key=" + key + "&dtype=json" + "&regNo=" + businessLicInfo.getCreditId()+ "&companyName=" + businessLicInfo.getCompanyName() + "&frname=" + businessLicInfo.getCeo();int timestamp = DateUtil.getSecondTimestamp(new Date());try {String result = HttpClientUtil.doGet(url, MD5Util.MD5(key+timestamp+secret),timestamp+"");System.out.println(result);} catch (Exception e) {e.printStackTrace();}return businessLicInfo;}

3、相关工具类

3.1 DateUtils

import java.util.Date;public class DateUtil {public static int getSecondTimestamp(Date date){if (null == date) {return 0;}String timestamp = String.valueOf(date.getTime());int length = timestamp.length();if (length > 3) {return Integer.valueOf(timestamp.substring(0,length-3));} else {return 0;}}
}

3.2 Http请求工具类

import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;public class HttpClientUtil {/*** 带参数的get请求* @param url* @param param* @return String*/public static String doGet(String url, Map<String, String> param) {// 创建Httpclient对象CloseableHttpClient httpclient = HttpClients.createDefault();String resultString = "";CloseableHttpResponse response = null;try {// 创建uriURIBuilder builder = new URIBuilder(url);if (param != null) {for (String key : param.keySet()) {builder.addParameter(key, param.get(key));}}URI uri = builder.build();// 创建http GET请求HttpGet httpGet = new HttpGet(uri);// 执行请求response = httpclient.execute(httpGet);// 判断返回状态是否为200if (response.getStatusLine().getStatusCode() == 200) {resultString = EntityUtils.toString(response.getEntity(), "UTF-8");}} catch (Exception e) {e.printStackTrace();} finally {try {if (response != null) {response.close();}httpclient.close();} catch (IOException e) {e.printStackTrace();}}return resultString;}/*** 带参数的get请求* @param url* @param param* @return String*/public static String doGet(String url,String token,String timeSpan,Object o) {// 创建Httpclient对象CloseableHttpClient httpclient = HttpClients.createDefault();String resultString = "";CloseableHttpResponse response = null;try {// 创建uriURIBuilder builder = new URIBuilder(url);URI uri = builder.build();// 创建http GET请求HttpGet httpGet = new HttpGet(uri);//添加header 头httpGet.setHeader("Token",token);httpGet.setHeader("Timespan",timeSpan);// 执行请求response = httpclient.execute(httpGet);// 判断返回状态是否为200if (response.getStatusLine().getStatusCode() == 200) {resultString = EntityUtils.toString(response.getEntity(), "UTF-8");}} catch (Exception e) {e.printStackTrace();} finally {try {if (response != null) {response.close();}httpclient.close();} catch (IOException e) {e.printStackTrace();}}return resultString;}//
//    /**
//     * 不带参数的get请求
//     * @param url
//     * @return String
//     */
//    public static String doGet(String url) {//        return doGet(url, null);
//    }/*** 不带参数的get请求** @param s* @param url* @return String*/public static String doGet(String url, String token, String timeSpan) {return doGet(url, token,timeSpan,null);}/*** 带参数的post请求* @param url* @param param* @return String*/public static String doPost(String url, Map<String, String> param) {// 创建Httpclient对象CloseableHttpClient httpClient = HttpClients.createDefault();CloseableHttpResponse response = null;String resultString = "";try {// 创建Http Post请求HttpPost httpPost = new HttpPost(url);// 创建参数列表if (param != null) {List<NameValuePair> paramList = new ArrayList<>();for (String key : param.keySet()) {paramList.add(new BasicNameValuePair(key, param.get(key)));}// 模拟表单UrlEncodedFormEntity entity = new UrlEncodedFormEntity(paramList);httpPost.setEntity(entity);}// 执行http请求response = httpClient.execute(httpPost);resultString = EntityUtils.toString(response.getEntity(), "utf-8");} catch (Exception e) {e.printStackTrace();} finally {try {response.close();} catch (IOException e) {e.printStackTrace();}}return resultString;}/*** 不带参数的post请求* @param url* @return String*/public static String doPost(String url) {return doPost(url, null);}/*** 传送json类型的post请求* @param url* @param json* @return String*/public static String doPostJson(String url, String json) {// 创建Httpclient对象CloseableHttpClient httpClient = HttpClients.createDefault();CloseableHttpResponse response = null;String resultString = "";try {// 创建Http Post请求HttpPost httpPost = new HttpPost(url);// 创建请求内容StringEntity entity = new StringEntity(json, ContentType.APPLICATION_JSON);httpPost.setEntity(entity);// 执行http请求response = httpClient.execute(httpPost);resultString = EntityUtils.toString(response.getEntity(), "utf-8");} catch (Exception e) {e.printStackTrace();} finally {try {response.close();} catch (IOException e) {e.printStackTrace();}}return resultString;}
}

至于百度OCR的调用可以参考我的上一边博文基于SpringBoot调用百度ocr实现图片的文字识别功能

基于SpringBoot调用百度ocr以及企查查接口实现对营业执照信息的提取并识别真伪相关推荐

  1. python调用百度接口实现ocr识别_Python调用百度OCR实现图片文字识别的示例代码

    百度AI提供了一天50000次的免费文字识别额度,可以愉快的免费使用!下面直接上方法: 首先在百度AI创建一个应用,按照下图创建即可,创建后会获得如下: 创建后会获得如下信息: APP_ID = '* ...

  2. Java调用百度OCR文字识别的接口

    调用百度OCR文字识别的接口,来自于百度官网,亲测可以使用 跳转链接 FileUtil的下载链接 Base64Util下载链接 HttpUtil下载链接 GsonUtils下载链接 Accurate. ...

  3. python 百度ocr安装_Python调用百度OCR实现图片文字识别的示例代码

    百度AI提供了一天50000次的免费文字识别额度,可以愉快的免费使用!下面直接上方法: 首先在百度AI创建一个应用,按照下图创建即可,创建后会获得如下: 创建后会获得如下信息: APP_ID = '* ...

  4. java调用ocr识别api_Java文字识别软件-调用百度ocr实现文字识别

    java_baidu_ocr Java调用百度OCR文字识别API实现图片文字识别软件 项目源代码在文末,放到了GitHub上 - https://github.com/Ymy214/java_bai ...

  5. java ocr文字识别软件_Java文字识别软件-调用百度ocr实现文字识别

    java_baidu_ocr Java调用百度OCR文字识别API实现图片文字识别软件 这是一款小巧方便,强大的文字识别软件,由Java编写,配上了窗口界面 调用了百度ocr文字识别API 识别精度高 ...

  6. Java调用百度OCR文字识别API实现图片文字识别软件

    java_baidu_ocr Java调用百度OCR文字识别API实现图片文字识别软件 这是一款小巧方便,强大的文字识别软件,由Java编写,配上了窗口界面 调用了百度ocr文字识别API 识别精度高 ...

  7. python调用百度接口实现ocr识别_Python 3调用百度OCR API实现剪贴板文字识别

    本程序调用百度OCR API对剪贴板的图片文字识别,配合CaptureScreen软件,可快速识别文字. #!python3 import urllib.request, urllib.parse i ...

  8. 10.5 UiPath如何调用百度OCR

    UiPath如何调用百度OCR 一.百度OCR的介绍 二.百度OCR在UiPath中的使用 1.在使用百度OCR之前, 我们需要先在百度注册一个账号, 然后在此地址登录https://login.bc ...

  9. java ocr api_Java调用百度OCR文字识别API实现图片文字识别软件

    Java调用百度OCR文字识别API实现图片文字识别软件 原创isinple 发布于2019-01-06 13:35:59 阅读数 1296 收藏 展开 java_baidu_ocr Java调用百度 ...

最新文章

  1. MySQL / B + 树算法在 mysql 中能存多少行数据?
  2. C#中POST数据和接收的几种方式
  3. 容器学习 之 dockerfile 命令(七)
  4. HDU 2296 Ring AC自动机 + DP
  5. linux版本FTP下载
  6. 『线性同余方程和中国剩余定理』
  7. Assembly.Load,LoadFile,LoadFrom
  8. python turtle画动物_如何用python画简单的动物
  9. c语言一串字符括号配对,C语言实现括号匹配的方法
  10. Java高级架构师(一)第05节:TortoiseGit的本地使用
  11. java什么是reference_理解java reference
  12. K8S 通过 yaml 文件创建资源
  13. CamtasiaStudio如何导出视频上传优酷实现高清
  14. Mac新手使用技巧——Safari浏览器
  15. 校园导航系统之用弗洛伊德算法求加权图的最短路径
  16. 微众银行大数据爽约? 回应:这是一种误解
  17. 数据中台当前与未来-数字化架构设计(1)
  18. vue upload上传图片
  19. SAP 获取本机信息(IP及电脑名称)
  20. 事业单位招聘计算机类面试自我介绍,2019事业单位面试自我介绍范文

热门文章

  1. Oracle中的sql语句
  2. 公链洗牌进行时 |链捕手
  3. H264--NALU/SPS/PPS
  4. C/C++教程 第一章 —— 初识C/C++
  5. Max()函数与Min()函数
  6. mktime()函数使用
  7. Xcode8使用出现bundleid: com.jd.***, enable_level: 0, persist_level: 0, propagate_with_acti
  8. echarts pie饼图既显示内部又显示外部指示线
  9. c语言整数大小越界,整数越界相加并求第n个斐波纳契数(C语言实现)
  10. linux主分区和逻辑分区