package test; import java.io.UnsupportedEncodingException; /** * * @author jim */ public class Test { /** * @param args the command line arguments * @throws java.io.UnsupportedEncodingException */ public static void main(String[] args) throws Unsuppo…
本篇随笔主要介绍了一个用java语言写的将一个文件编码转换为另一个编码并不改变文件内容的工具类: 通过读取源文件内容,用URLEncoding重新编码解码的方式实现. public class ChangeFileEncoding { public static int fileCount = 0; public static String sourceFileRoot = "替换为要转换的源文件或源目录"; // 将要转换文件所在的根目录 public static String s…