摘要:
软件说明 基于以下两个开源项目,做了再次封装 https://github.com/paddlepaddle/PaddleOCR PaddleOCRSharp: 本项目是一个基于PaddleOCR的C++代码修改并封装的.NET的OCR工具类库。包含文本识别、文本检测、基于文本检测结果的统计分析的表 阅读全文
摘要:
使用 ScreenCapturer.dll ScreenCapturer: 一个NET 下的截图工具,支持多屏幕下的截图功能,支持全屏或者指定区域截图,说手动或自动截图。 Demo 代码 using System; using System.Collections.Generic; using Sy 阅读全文
摘要:
SpringBoot2配置文件有变化,需要更改配置 #datasource spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/test 阅读全文
摘要:
import java.util.HashMap; public class test2 { // 定义45进制数字 private static final String X45 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./: "; // 拿到45 阅读全文
摘要:
pom <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <flink.version>1.11.2</flink.version> <scala.binary.version>2.11</ 阅读全文
摘要:
yml配置文件中 management: endpoints: web: exposure: include: '*' properties配置文件中 management.endpoints.web.exposure.include=* 阅读全文
摘要:
public class NancyBootstrapper : DefaultNancyBootstrapper { /// <summary> /// nancy配置 /// </summary> /// <param name="container">容器</param> /// <param 阅读全文
摘要:
1、官方地址:https://github.com/Netflix/eureka/wiki/Eureka-REST-operations 2、自己搭建一个 Eureka服务运行起来。 3、打开Postman开始干活。 4、先获取下所有服务。 5、模拟注册 注册内容: <instance> <inst 阅读全文
摘要:
//去掉字符串前面的0 String str1 = "00123400"; String newStr1 = str1.replaceAll("^0+", ""); System.out.println(newStr1); //去掉字符串后面的0 String str2 = "00123400"; 阅读全文
摘要:
我使用的是 <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>5.5.0</version> </dependency> xxx.dll及相关动态库放在resources目录下 阅读全文