前段时间在公司程序上看到前辈们用split()方法去切割无分隔符号标志的字符串。 如: String testStr = "asd"; String[] testStrSplit = testStr.split(""); 如果你的版本不是jdk1.7时 输出testStrSplit 是["a","s","d"] 刚开始我还以为是前辈程序有问题。 然…
需求:对比规则表和累计表,符合条件的进行写入文件。 程序结构 pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://m…