Java讀取 寫入 file檔案如何解決亂碼問題

2021-08-21 12:00:41 字數 3268 閱讀 3628

讀取檔案流時,經常會遇到亂碼的現象,造成亂碼的原因當然不可能是乙個,這裡主要介紹因為檔案編碼格式而導致的亂碼的問題。首先,明確一點,文字檔案與二進位制檔案的概念與差異。

文字檔案是基於字元編碼的檔案,常見的編碼有ascii編碼,unicode編碼、ansi編碼等等。二進位制檔案是基於值編碼的檔案,你可以根據具體應用,指定某個值是什麼意思(這樣乙個過程,可以看作是自定義編碼。)

因此可以看出文字檔案基本上是定長編碼的(也有非定長的編碼如utf-8)。而二進位制檔案可看成是變長編碼的,因為是值編碼嘛,多少個位元代表乙個值,完全由你決定。

對於二進位制檔案,是千萬不能使用字串的,因為字串預設初始化時會使用系統預設編碼,然而,二進位制檔案因為自定義編碼自然與固定格式的編碼會有所衝突,所以對於二進位制的檔案只能採用位元組流讀取、操作、寫入。

對於文字檔案,因為編碼固定,所以只要在讀取檔案之前,採用檔案自身的編碼格式解析檔案,然後獲取位元組,再然後,通過指定格式初始化字串,那麼得到的文字是不會亂碼的。雖然,二進位制檔案也可以獲取到它的文字編碼格式,但是那是不準確的,所以不能同日而語。

具體操作如下:

1)獲取文字檔案的格式

public static string getfileencode(string path)  else if (first3bytes[0] == (byte) 0xfe && first3bytes[1] == (byte) 0xff)  else if (first3bytes[0] == (byte) 0xef && first3bytes[1] == (byte) 0xbb && first3bytes[2] == (byte) 0xbf) 

bis.reset();

if (!checked) else if (0xe0 <= read && read <= 0xef) else

break;

} else

break;}}

+ " " + integer.tohexstring(read));

}} catch (exception e) finally catch (ioexception ex) }}

return charset;

} private static string getencode(int flag1, int flag2, int flag3)

else if (flag1 == 254 && flag2 == 255)

else if (flag1 == 239 && flag2 == 187 && flag3 == 191)

else

return encode;

}

2)通過檔案的編碼格式讀取檔案流

/**

* 通過路徑獲取檔案的內容,這個方法因為用到了字串作為載體,為了正確讀取檔案(不亂碼),只能讀取文字檔案,安全方法!

*/public static string readfile(string path)

// 獲取檔案編碼格式

string code = fileencode.getfileencode(path);

inputstreamreader isr = null;

tryisr = new inputstreamreader(new fileinputstream(file),code);

// 讀取檔案內容

int length = -1 ;

char buffer = new char[1024];

stringbuffer sb = new stringbuffer();

while((length = isr.read(buffer, 0, 1024) ) != -1)

data = new string(sb);

}catch(exception e)finally

} catch (ioexception e)

}return data;

}

3)通過檔案指定的格式寫出到檔案

/**

* 按照指定的路徑和編碼格式儲存檔案內容,這個方法因為用到了字串作為載體,為了正確寫入檔案(不亂碼),只能寫入文字內容,安全方法

* * @param data

* 將要寫入到檔案中的位元組資料

* @param path

* 檔案路徑,包含檔名

* @return boolean

* 當寫入完畢時返回true;

*/public static boolean writefile(byte data, string path , string code)

}if("asci".equals(code))

osw = new outputstreamwriter(new fileoutputstream(path),code);

osw.write(new string(data,code));

osw.flush();

}catch(exception e)finally

}catch(ioexception e)

}return flag;

}

4)對於二進位制檔案而且內容很少的,例如word文件等,可以使用如下方式讀取、寫入檔案

/**

* 從指定路徑讀取檔案到位元組陣列中,對於一些非文字格式的內容可以選用這個方法

* 457364578634785634534

* @param path

* 檔案路徑,包含檔名

* @return byte

* 檔案位元組陣列

*

*/public static byte getfile(string path) throws ioexception

/*** 把位元組內容寫入到對應的檔案,對於一些非文字的檔案可以採用這個方法。

* @param data

* 將要寫入到檔案中的位元組資料

* @param path

* 檔案路徑,包含檔名

* @return boolean isok 當寫入完畢時返回true;

* @throws exception

*/public static boolean tofile(byte data, string path) throws exception

Java 檔案輸入輸出流File讀取寫入檔案

如果做成jar包可以使用這種方式,這種方式可以取得該類的絕對路徑 取得該類的絕對路徑 string location 類名.class getprotectiondomain getcodesource getlocation getpath 以下是獲取jar包的上一級資料夾 int startin...

java讀取和寫入txt檔案

要處理的資料為以下資料,需要將資料中的 以及 全部變成tab空格 1 rhizoma polygoni cuspidati hu zhang 虎杖 cyp1b1 2 rhizoma polygoni cuspidati hu zhang 虎杖 hgf hpta 3 rhizoma polygoni ...

Java 按位讀取寫入檔案

在實現huffman樹時,壓縮和解壓需要從檔案中按位讀取,即一次唯讀乙個位或者寫乙個位。演算法 第四版 中提供了一種實現方法,stdin類和stdout類,豁然開朗。方法 1.開闢乙個緩衝區int buffer,用於儲存位,並記錄緩衝區中bit數n 2.緩衝區不為空時,進行位運算buffer n 1...