Eclipse:批量将Java源代码文件的编码从GBK转为UTF-8

很简单的几行代码,就可以批量将GBK格式的java文件转为UTF-8格式。 基本上所有文本文件的编码转换都可以采用这种方式。

import java.io.File;
import java.io.IOException;
import java.util.Collection;

import org.apache.commons.io.FileUtils;

public class XXXX {
    public static void main(String[] args) throws IOException {
        //GBK编码格式源码路径 
        String srcDirPath = "D:\\eclipse\\eclipse\\workspace\\News\\src\\com\\ischoolbar\\programmer"; 
        //转为UTF-8编码格式源码路径 
        String utf8DirPath = "D:\\eclipse\\eclipse\\workspace\\News\\src\\com\\ischoolbar\\programmer"; 
        //获取所有java文件 
        Collection<File> javaGbkFileCol =  FileUtils.listFiles(new File(srcDirPath), new String[]{"java"}, true); 
                
        for (File javaGbkFile : javaGbkFileCol) { 
              //UTF8格式文件路径 
              String utf8FilePath = utf8DirPath+javaGbkFile.getAbsolutePath().substring(srcDirPath.length()); 
               //使用GBK读取数据,然后用UTF-8写入数据 
              FileUtils.writeLines(new File(utf8FilePath), "UTF-8", FileUtils.readLines(javaGbkFile, "GBK"));        
        }
    }
}

参考:https://blog.csdn.net/jj88888/article/details/12711291

猜你喜欢

转载自www.cnblogs.com/lyh233/p/12052580.html