-
Java代码实现的工具,用于批量将某编码格式的文本文件转码为UTF8
资源介绍
java -jar "encoding.jar"
the first is the directory store your initial files in any encoding style
the second is the directory you want to store the new files
the third is the encoding name of your initial files
第一个参数代表想要转码的文件的文件目录
第二个参数代表你想把转码之后的文件储存到的目录
第三个参数是原来的文件的编码格式
记住:生成的文件的编码格式都是UTF8
比如说我想把用GBK编码的/home/user/uchome目录下的文件全部转码为UTF8,转码之后的文件存储在/home/user/uchome2,那么命令为
java -jar "encoding.jar" /home/user/uchome /home/user/uchome2 GBK
- 上一篇: GBK转UTF8(模版格式转换)
- 下一篇: 源码批量转码工具