中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用java如何將GBK轉換為uft8

發布時間:2020-12-01 17:32:52 來源:億速云 閱讀:216 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關利用java如何將GBK轉換為uft8,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

具體如下:

windows下的默認編碼為GBK還有gb2312,如何把gbk的java工程轉為utf8的呢,如果直接修改工程編碼,其實里面的java文件中中文是會亂碼的,寫了個批量轉換java工程的程序,消遣一下。

為什么要轉碼?

有些老的項目,或者朋友的項目之前沒注意在windows上不是utf8,而你有需要看注釋或者什么,總不能一個文件一個文件的去改編碼屬性吧。

本程序試用范圍

gbk的代碼,或者gb2312的工程均可以轉換

編碼轉換的思路

本來想做成一個通用的會自動檢測編碼,自動轉換的程序。但是由于判斷編碼類型不準,所以做成了針對GBK的轉換。

  1. 制定gbk編碼把文件流讀進來,加載到內存,轉為String類型的內容

  2. 將String內容轉為utf8的String

  3. 將String內容寫入文件

核心代碼:

public class TransferProject{
  public static void transferFile(String pathName,intdepth)throwsException{
    File dirFile = new File(pathName);
    if (!isValidFile(dirFile)) return;
    //獲取此目錄下的所有文件名與目錄名
    String[] fileList = dirFile.list();
    int currentDepth = depth + 1;
    for (int i = 0; i < fileList.length; i++) {
      String string = fileList[i];
      File file = new File(dirFile.getPath(), string);
      String name = file.getName();
      //如果是一個目錄,搜索深度depth++,輸出目錄名后,進行遞歸
      if (file.isDirectory()) {
        //遞歸
        transferFile(file.getCanonicalPath(), currentDepth);
      } else {
        if (name.contains(".java") || name.contains(".properties") || name.contains(".xml")) {
          readAndWrite(file);
          System.out.println(name + " has converted to utf8 ");
        }
      }
    }
  }

 
  private static boolean isValidFile(File dirFile)throwsIOException{
    if (dirFile.exists()) {
      System.out.println("file exist");
      return true;
    }
    if (dirFile.isDirectory()) {
      if (dirFile.isFile()) {
        System.out.println(dirFile.getCanonicalFile());
      }
      return true;
    }
    return false;
  }

  private static void readAndWrite(File file)throwsException{
    String content = FileUtils.readFileByEncode(file.getPath(), "GBK");
    FileUtils.writeByBufferedReader(file.getPath(), new String(content.getBytes("UTF-8"), "UTF-8"));
  }

  public static void main(String[] args)throwsException{
    //程序入口,制定src的path
    String path = "/Users/mac/Downloads/unit06_jdbc/src";
    transferFile(path, 1);
  }
}
public class FileUtils{
  public static void writeByBufferedReader(String path, String content){
    try {
      File file = new File(path);
      file.delete();
      if (!file.exists()) {
        file.createNewFile();
      }

      FileWriter fw = new FileWriter(file, false);
      BufferedWriter bw = new BufferedWriter(fw);
      bw.write(content);
      bw.flush();
      bw.close();

    } catch (IOException e) {
      e.printStackTrace();
    }
  }
  public staticStringreadFileByEncode(String path, String chatSet)throwsException{
    InputStream input = new FileInputStream(path);
    InputStreamReader in = new InputStreamReader(input, chatSet);
    BufferedReader reader = new BufferedReader(in);
    StringBuffer sb = new StringBuffer();
    String line = reader.readLine();
    while (line != null) {
      sb.append(line);
      sb.append("\r\n");
      line = reader.readLine();
    }
    return sb.toString();
  }
}

上述就是小編為大家分享的利用java如何將GBK轉換為uft8了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新兴县| 通化市| 永善县| 晋宁县| 临沧市| 静乐县| 九台市| 肇源县| 平阳县| 密山市| 紫阳县| 化隆| 四川省| 郑州市| 连云港市| 隆德县| 那坡县| 秭归县| 措美县| 镇原县| 巴楚县| 杭锦后旗| 溧阳市| 绍兴市| 绥滨县| 尚义县| 琼中| 富源县| 洞头县| 满洲里市| 新乐市| 噶尔县| 新密市| 秦安县| 万载县| 屯门区| 樟树市| 赤水市| 舒兰市| 兖州市| 阿鲁科尔沁旗|