2021
09-14
09-14
教新手使用java如何对一个大的文本文件内容进行去重
目录有内存溢出风险的写法:通过hashCode取模拆分写法:总结有内存溢出风险的写法:publicstaticvoiddistinct(){Fileff=newFile("G://password/all.txt");FiledistinctedFile=newFile("G://password/all-distinced.txt");PrintWriterpw=null;Set<String>allHash=null;FileReaderfr=null;BufferedReaderbr=null;try{pw=newPrintWriter(distinctedFile);allHash=newHashSet<Str...
继续阅读 >