この記事では、Java を使用して GBK プロジェクトを uft8 に変換する方法の例を主に紹介します。編集者が非常に優れていると考えたので、参考として共有します。エディターをフォローして見てみましょう
この記事では、Java を使用して GBK プロジェクトを uft8 に変換し、みんなと共有する方法を紹介します。詳細は次のとおりです:
Windows のデフォルトのエンコーディングは GBK と gb2312 です。 gbk java プロジェクトを UTF8 に変更すると、プロジェクトのエンコーディングを直接変更すると、実際に内部の Java ファイルの中国語文字が文字化けします。 趣味で Java プロジェクトを一括変換するプログラムを書きました。
なぜトランスコードするのですか?
一部の古いプロジェクトや友人のプロジェクトは、Windows 上で UTF8 ではないことに気づいていません。コメントなどを読む必要がある場合、一度に 1 ファイルずつエンコード属性を変更することはできません。
このプログラムの試行範囲
gbkコードまたはgb2312プロジェクトは変換可能です
エンコーディング変換のアイデア
元々はエンコーディングを自動的に検出して自動的に変換できるユニバーサルプログラムを作りたかったのです。しかし、エンコードタイプの判定が不正確だったため、GBKに変換されてしまいました。
ファイルストリームを読み取り、メモリにロードし、文字列型コンテンツに変換するための gbk エンコーディングを開発します
文字列コンテンツを utf8 文字列に変換します
文字列コンテンツをファイルに書き込みます
コアコード:
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 メソッド共有に変換する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。