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