Java源码乱码问题 编码转换器

注释:开发背景:导入到myeclipse中的源码是gbk编码,项目是utf-8编码,导致查看源码乱码问题。


package com.test;

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

import org.apache.commons.io.FileUtils;
import org.junit.Test;
/**
 *
 * @FileName    : Transcode
 * @Description : 文件编码转换器
 * @Copyright   : XXXX
 * @Company     : XXXXXX
 * @author      : 星辰
 * @version     : 1.0
 * Create Date  : 2014-11-12 上午11:47:10
 */
public class Transcode {
 /**
   * @Title: transcode
   * @Description: 源代码乱码转换器
   * @param sourcePath 源代码路径
   * @param oldCode 源代码原来的编码格式
   * @param newCode 源代码需要转换成的编码格式
   * @param extensions an array of extensions, ex. {"java","xml"}. If this parameter is null, all files are returned  
   * @return:void
  */
 public void transcode(String sourcePath,String oldCode,String newCode,String[] extensions){
  Collection<File> javaGbkFileCol =  FileUtils.listFiles(new File(sourcePath), extensions, true);
  for (File gbkFile : javaGbkFileCol) {
        try {
    FileUtils.writeLines(new File(gbkFile.getAbsolutePath()), newCode, FileUtils.readLines(gbkFile,oldCode));
   } catch (IOException e) {
    e.printStackTrace();
   }       
   }
 }
 @Test
 public void test(){
  new Transcode().transcode("C:/Users/chx/Desktop/alisoft-xplatform-asf-cache-2.5.1-src资料/alisoft-xplatform-asf-cache-2.5.1-src资料/alisoft-xplatform-asf-cache-2.5.1-src","GBK","UTF-8",null);
 }
}



郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。