摘要: public void unZip(File zipFile, String dest) throws Exception { try { // 首先创建ZipFile指向磁盘上的.zip文件 ZipFile zFile = new ZipFile(zipFile); String encoding 阅读全文
posted @ 2024-01-12 14:16 save_me 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Oracle查询30天内的数据 SELECT * FROM table_name WHERE id= '01'AND CREATETIME >= TRUNC(SYSDATE - 30) ORDER BY CREATETIME DESC 阅读全文
posted @ 2024-01-12 14:15 save_me 阅读(212) 评论(0) 推荐(0) 编辑
摘要: centos7 初始化mysql8,设置不区分大小写 # centos7 初始化mysql8,设置不区分大小写 [root@monsters ~]# cd /etc [root@monsters etc]# vi my.cnf # 修改my.cnf lower_case_table_names=1 阅读全文
posted @ 2024-01-12 14:14 save_me 阅读(166) 评论(0) 推荐(0) 编辑