java寫入檔案是亂碼
我們讀取、寫入檔案流時,常常會遇到亂碼的現象,造成亂碼的原因當然不可能是一個,這裡主要介紹因為文件編碼格式而導致的亂碼的問題。首先,明確一點,文字檔案與二進位檔案的概念與差異。
文字檔是基於字元編碼的文件,常見的編碼有ASCII編碼,UNICODE編碼、ANSI編碼等等。二進位檔案是基於值編碼的文件,你可以根據具體應用,指定某個值是什麼意思(這樣一個過程,可以看作是自訂編碼。)
因此可以看出文字檔案基本上是定長編碼的(也有非定長的編碼如UTF-8)。而二進位檔案可看成是變長編碼的,因為是值編碼嘛,多少個位元代表一個值,完全由你決定。
具體操作如下:
透過檔案指定的格式寫入檔案
/** * 按照指定的路径和编码格式保存文件内容,这个方法因为用到了字符串作为载体,为了正确写入文件(不乱码),只能写入文本内容,安全方法 * * @param data * 将要写入到文件中的字节数据 * @param path * 文件路径,包含文件名 * @return boolean * 当写入完毕时返回true; */ public static boolean writeFile(byte data[], String path , String code){ boolean flag = true; OutputStreamWriter osw = null; try{ File file = new File(path); if(!file.exists()){ file = new File(file.getParent()); if(!file.exists()){ file.mkdirs(); } } if("asci".equals(code)){ code = "GBK"; } osw = new OutputStreamWriter(new FileOutputStream(path),code); osw.write(new String(data,code)); osw.flush(); }catch(Exception e){ e.printStackTrace(); log.info("toFile IO Exception:"+e.getMessage()); flag = false; }finally{ try{ if(osw != null){ osw.close(); } }catch(IOException e){ e.printStackTrace(); log.info("toFile IO Exception:"+e.getMessage()); flag = false; } } return flag; }
php中文網,大量的免費Java入門教學,歡迎在線學習!
以上是java寫入檔案是亂碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!