摘要: package com.shine.eiuop.utils; import java.util.regex.MatchResult;import java.util.regex.Matcher;import java.util.regex.Pattern; public class ZWUtils 阅读全文
posted @ 2020-07-23 18:12 rearboal 阅读(106) 评论(0) 推荐(0) 编辑
摘要: package com.shine.eiuop.utils.Utils2; import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.File;import java.io.FileInputStream;i 阅读全文
posted @ 2020-07-23 11:31 rearboal 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1:转义和不需要转义 例如: mane = (line.substring(line.indexOf("\"")+1,line.lastIndexOf("."))).trim(); mane = (line.split("\\.")[0].substring(line.split("\\.")[0] 阅读全文
posted @ 2020-07-23 03:42 rearboal 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/zhaoyan001/p/11737961.html 1. 循环list中的所有元素然后删除重复 public static List removeDuplicate(List list) { for ( int i = 0 ; i < li 阅读全文
posted @ 2020-07-23 03:05 rearboal 阅读(6962) 评论(0) 推荐(1) 编辑
摘要: package com.shine.eiuop.utils; import java.util.ArrayList;import java.util.regex.Matcher;import java.util.regex.Pattern; public class test { public st 阅读全文
posted @ 2020-07-23 01:57 rearboal 阅读(3026) 评论(0) 推荐(0) 编辑