上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
  2022年8月16日
摘要: 验证可以 fzdpaword:function(value){ var regex = new RegExp(/(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[^a-zA-Z0-9]).{6,20}/); if(!regex.test(value)){ return '您的密 阅读全文
posted @ 2022-08-16 19:53 IT-QI 阅读(119) 评论(0) 推荐(0) 编辑
  2022年8月10日
摘要: Date date = new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateStartStr =String.valueOf(((Map<String, Ob 阅读全文
posted @ 2022-08-10 22:08 IT-QI 阅读(1819) 评论(0) 推荐(0) 编辑
  2022年8月9日
摘要: select regexp_substr(q.cs_id, '[^,]+', 1, rownum,'i') from (select * from T_RSGL_FGCS t where t.fgld = '1813') q connect by rownum <= LENGTH(q.cs_id) 阅读全文
posted @ 2022-08-09 15:03 IT-QI 阅读(15) 评论(0) 推荐(0) 编辑
  2022年8月5日
摘要: //使用多线程技术,提高程序的效率 ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor( 5, 20, 5000, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<>(5), new 阅读全文
posted @ 2022-08-05 17:57 IT-QI 阅读(42) 评论(0) 推荐(0) 编辑
  2022年7月21日
摘要: #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev 阅读全文
posted @ 2022-07-21 17:25 IT-QI 阅读(152) 评论(0) 推荐(0) 编辑
  2022年7月19日
摘要: -- Create sequence create sequence S_USER_UNIT_IDminvalue 1maxvalue 9999999999999999999999999999start with 4159increment by 1cache 20; 阅读全文
posted @ 2022-07-19 20:19 IT-QI 阅读(20) 评论(0) 推荐(0) 编辑
  2022年7月15日
摘要: 1 <span style="padding:0px; margin:0px"><project xmlns="http://maven.apache.org/POM/4.0.0" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 x 阅读全文
posted @ 2022-07-15 09:44 IT-QI 阅读(22) 评论(0) 推荐(0) 编辑
  2022年7月13日
摘要: package org.tio.sitexxx.web.server.init; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import 阅读全文
posted @ 2022-07-13 11:04 IT-QI 阅读(722) 评论(0) 推荐(0) 编辑
  2022年6月22日
摘要: 最近想要把我近期做的几个项目上传到gitlab上,自己没事的时候方便查看一下曾经写的代码,在网上搜罗一些上传的方法,下面我来记录一下我的本地项目上传过程。 具体步骤如下: 1. 登录 gitLab账号,成功创建一个项目文件,并生成https地址 2.打开本地项目,初始化git $ git init 阅读全文
posted @ 2022-06-22 12:26 IT-QI 阅读(6729) 评论(0) 推荐(0) 编辑
  2022年6月9日
摘要: public class PDFHelper3 { public static void main(String[] args) throws IOException { pdf2word("C:\\Users\\admin\\Desktop\\数科转换迁移系统接口指南-20210629.pdf") 阅读全文
posted @ 2022-06-09 17:47 IT-QI 阅读(635) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页