摘要: <el-form-item label="附件" prop="attachment"> <el-upload :multiple="false" :limit="1" :on-exceed="handleExceed" :http-request="uploadFiles" :on-remove=" 阅读全文
posted @ 2021-11-04 16:27 我没有出家 阅读(357) 评论(0) 推荐(0) 编辑
摘要: SELECT * FROM `tb_test` WHERE c_id ='123' AND create_time LIKE '2021-06-03%' AND find_in_set('A362',field) ; find_in_set('A362',field): field为字段名称 A36 阅读全文
posted @ 2021-06-04 18:07 我没有出家 阅读(175) 评论(0) 推荐(0) 编辑
摘要: https://www.e-iceblue.cn/pdf_java_image_shapes/replace-image-with-new-image-in-pdf-in-java.html maven依赖 <repositories> <repository> <id>com.e-iceblue< 阅读全文
posted @ 2021-06-01 17:29 我没有出家 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: where colum4 REGEXP "^[[:digit:]]{1}/[[:digit:]]{1}/[[:digit:]]{4}"=1 -- 2/3/2021 where colum4 REGEXP "^[[:digit:]]{1}/[[:digit:]]{2}/[[:digit:]]{4}"= 阅读全文
posted @ 2021-05-31 09:42 我没有出家 阅读(362) 评论(0) 推荐(0) 编辑
摘要: LOAD DATA LOCAL INFILE 'D:\\ss\\chongzhi\\T_RORD.csv' INTO TABLE cz_T_RECHARGE_SET_RECORDFIELDS TERMINATED BY ','OPTIONALLY ENCLOSED BY '"'LINES TERMI 阅读全文
posted @ 2021-05-26 17:27 我没有出家 阅读(43) 评论(0) 推荐(0) 编辑
摘要: public class DbInfoUtil { /** * 根据数据库的连接参数,获取指定表的基本信息:字段名、字段类型、字段注释 * @param driver 数据库连接驱动 * @param url 数据库连接url * @param user 数据库登陆用户名 * @param pwd 阅读全文
posted @ 2021-05-20 10:44 我没有出家 阅读(438) 评论(0) 推荐(0) 编辑
摘要: package com.szc.demo.redis_demo.utils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.Redis 阅读全文
posted @ 2021-05-18 18:55 我没有出家 阅读(136) 评论(0) 推荐(0) 编辑
摘要: update zhanghuxinxi set jiaoyikahao = replace(replace(replace(replace (jiaoyikahao ,char(9),""),char(13),""),char(10),""),char(32),""); trim():这个函数只会去 阅读全文
posted @ 2021-05-10 10:54 我没有出家 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 参考安装还有redis常用命令:https://www.cnblogs.com/happywish/p/10944253.html 安装: 1.获取redis资源,可指定目录进行下载 cd / #回到根目录 wget http://download.redis.io/releases/redis-4 阅读全文
posted @ 2021-04-23 16:46 我没有出家 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 字库下载参考:https://github.com/tesseract-ocr/tessdata/tree/3.04.00 解压后在项目根目录创建tessdata目录,将内容复制进去。 如图: 测试: public static void main(String[] args) throws Tes 阅读全文
posted @ 2021-04-21 17:48 我没有出家 阅读(1183) 评论(0) 推荐(0) 编辑