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