登录 注册
当前位置:主页 > 资源下载 > 20 > Java代码实现的工具,用于批量将某编码格式的文本文件转码为UTF8

Java代码实现的工具,用于批量将某编码格式的文本文件转码为UTF8

  • 更新:2024-10-08 20:07:26
  • 大小:7KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Java - 后端
  • 格式:ZIP

资源介绍

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