摘要: 判断字符串是否只含有数字 使用commons.lang包工具类 import org.apache.commons.lang3.StringUtils; StringUtils.isNumeric(tmpStr) 底层实现 判断每一个字符是否是数字 public static boolean isN 阅读全文
posted @ 2023-11-21 14:08 SpecialSpeculator 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 使用stream流的anyMatch 判断的条件里,任意一个元素成功,返回true 上代码 List<SectorInfo> sectorsInfo = scanResultParser.apply(scanResult); return sectorsInfo.stream() .map(sect 阅读全文
posted @ 2023-11-21 14:00 SpecialSpeculator 阅读(41) 评论(0) 推荐(0) 编辑