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