08 2022 档案

摘要:查找相同数据SQL: select * from table where name in (select name from table group by name having count(name) > 1); 阅读全文
posted @ 2022-08-12 11:18 才没有木头 阅读(51) 评论(0) 推荐(0)
摘要://截取二个字符中间的信息String fileUrl ="22-CD-213123125.pdf";//获取第二个-的下标int i = fileUrl.indexOf("-", 3) + 1;//获取第一个.的下标int i1 = fileUrl.indexOf(".");//截取String 阅读全文
posted @ 2022-08-03 16:15 才没有木头 阅读(94) 评论(0) 推荐(0)