利用位元組順序標記 (BOM) 精確辨識文件編碼
StreamReader.CurrentEncoding
方法並非總是能可靠地提供文件編碼信息,而分析文件的字節順序標記 (BOM) 則是一種精確有效的編碼識別方法。 BOM 序列(如果存在)能夠指示編碼格式。
以下程式碼片段介紹了一個名為 GetEncoding
的方法,該方法根據檔案的 BOM 來確定文字檔案的編碼。如果 BOM 偵測失敗,則預設為 ASCII:
<code class="language-csharp">public static Encoding GetEncoding(string filename) { // 读取 BOM var bom = new byte[4]; using (var file = new FileStream(filename, FileMode.Open, FileAccess.Read)) { file.Read(bom, 0, 4); } // 分析 BOM if (bom[0] == 0x2b && bom[1] == 0x2f && bom[2] == 0x76) return Encoding.UTF7; if (bom[0] == 0xef && bom[1] == 0xbb && bom[2] == 0xbf) return Encoding.UTF8; if (bom[0] == 0xff && bom[1] == 0xfe && bom[2] == 0 && bom[3] == 0) return Encoding.UTF32; //UTF-32LE if (bom[0] == 0xff && bom[1] == 0xfe) return Encoding.Unicode; //UTF-16LE if (bom[0] == 0xfe && bom[1] == 0xff) return Encoding.BigEndianUnicode; //UTF-16BE if (bom[0] == 0 && bom[1] == 0 && bom[2] == 0xfe && bom[3] == 0xff) return new UTF32Encoding(true, true); //UTF-32BE // BOM 检测失败时,默认为 ASCII return Encoding.ASCII; }</code>
使用此方法,您可以精確地識別文件的編碼,從而實現準確的文字解釋和操作。
以上是如何使用位元組順序標記 (BOM) 精確識別文件的編碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!