最近用BufferedReader讀一個文本文件,而後再將讀出的內容用PrintWriter寫入到另一個新的文件中。編碼
以前一直沒有發現這個問題,就是若是文本內容中有中文,在讀出的內容和寫入的內容都會出現亂碼。spa
想了一下解決方案。code
首先用BufferedReader讀出的時候設置一下字符集編碼:blog
//文件路徑:filePath File file = new File(filePath); FileInputStream fin = new FileInputStream(file); InputStreamReader in = new InputStreamReader(fin,"GBK"); BufferedReader br = new BufferedReader(in);
設置好了以後,會進行一些讀出操做,而後再調用PrintWriter寫入,固然也要設置同一個字符集編碼:it
File tempFile = new File(newPath); PrintWriter tpw = null; FileOutputStream fo = new FileOutputStream(tmpFile); OutputStreamWriter osw = new OutputStreamWriter(fo,"GBK"); tpw = new PrintWriter(osw);