最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#實(shí)現(xiàn)獲取文本文件的編碼的一個(gè)類(區(qū)分GB2312和UTF8)

 更新時(shí)間:2014年09月15日 10:49:59   投稿:junjie  
這篇文章主要介紹了C#實(shí)現(xiàn)獲取文本文件的編碼一個(gè)類,本文給出類可以自動(dòng)區(qū)分GB2312和UTF8,并同時(shí)給出了使用方法,需要的朋友可以參考下

以下是獲取文件編碼的一個(gè)類:

using System;
using System.IO;
using System.Text;
 
/// <summary>
/// FileEncoding 的摘要說(shuō)明
/// </summary>
namespace FileEncoding
{
/// <summary>
/// 獲取文件的編碼格式
/// </summary>
public class EncodingType
{
/// <summary>
/// 給定文件的路徑,讀取文件的二進(jìn)制數(shù)據(jù),判斷文件的編碼類型
/// </summary>
/// <param name="FILE_NAME">文件路徑</param>
/// <returns>文件的編碼類型</returns>
public static System.Text.Encoding GetType(string FILE_NAME)
{
FileStream fs = new FileStream(FILE_NAME, FileMode.Open, FileAccess.Read);
Encoding r = GetType(fs);
fs.Close();
return r;
}
 
/// <summary>
/// 通過(guò)給定的文件流,判斷文件的編碼類型
/// </summary>
/// <param name="fs">文件流</param>
/// <returns>文件的編碼類型</returns>
public static System.Text.Encoding GetType(FileStream fs)
{
byte[] Unicode = new byte[] { 0xFF, 0xFE, 0x41 };
byte[] UnicodeBIG = new byte[] { 0xFE, 0xFF, 0x00 };
byte[] UTF8 = new byte[] { 0xEF, 0xBB, 0xBF }; //帶BOM
Encoding reVal = Encoding.Default;
 
BinaryReader r = new BinaryReader(fs, System.Text.Encoding.Default);
int i;
int.TryParse(fs.Length.ToString(), out i);
byte[] ss = r.ReadBytes(i);
if (IsUTF8Bytes(ss) || (ss[0] == 0xEF && ss[1] == 0xBB && ss[2] == 0xBF))
{
reVal = Encoding.UTF8;
}
else if (ss[0] == 0xFE && ss[1] == 0xFF && ss[2] == 0x00)
{
reVal = Encoding.BigEndianUnicode;
}
else if (ss[0] == 0xFF && ss[1] == 0xFE && ss[2] == 0x41)
{
reVal = Encoding.Unicode;
}
r.Close();
return reVal;
 
}
 
/// <summary>
/// 判斷是否是不帶 BOM 的 UTF8 格式
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
private static bool IsUTF8Bytes(byte[] data)
{
int charByteCounter = 1; //計(jì)算當(dāng)前正分析的字符應(yīng)還有的字節(jié)數(shù)
byte curByte; //當(dāng)前分析的字節(jié).
for (int i = 0; i < data.Length; i++)
{
curByte = data[i];
if (charByteCounter == 1)
{
if (curByte >= 0x80)
{
//判斷當(dāng)前
while (((curByte <<= 1) & 0x80) != 0)
{
charByteCounter++;
}
//標(biāo)記位首位若為非0 則至少以2個(gè)1開始 如:110XXXXX...........1111110X 
if (charByteCounter == 1 || charByteCounter > 6)
{
return false;
}
}
}
else
{
//若是UTF-8 此時(shí)第一位必須為1
if ((curByte & 0xC0) != 0x80)
{
return false;
}
charByteCounter--;
}
}
if (charByteCounter > 1)
{
throw new Exception("非預(yù)期的byte格式");
}
return true;
}
 
}
 
 
}

以下是使用示例:

#region 打開按鈕
/// <summary>
/// 打開按鈕
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void txtMenuOpen_Click(object sender, EventArgs e)
{
string fName;
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.InitialDirectory = "";//注意這里寫路徑時(shí)要用c:而不是c: 
openFileDialog.Filter = "文本文檔|*.txt";
openFileDialog.RestoreDirectory = true;
openFileDialog.FilterIndex = 1;
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
fName = openFileDialog.FileName;
 
txtBox.Text = System.IO.File.ReadAllText(fName,
FileEncoding.EncodingType.GetType(fName));
} 
 
}
#endregion

相關(guān)文章

最新評(píng)論

大关县| 新建县| 南澳县| 浏阳市| 阆中市| 临沂市| 岢岚县| 桂林市| 山东省| 雅安市| 姚安县| 会宁县| 桓仁| 夹江县| 新乐市| 舟曲县| 临洮县| 东乡族自治县| 德保县| 淳安县| 扎赉特旗| 买车| 仁怀市| 北宁市| 五家渠市| 花垣县| 阳城县| 凤山县| 康保县| 临安市| 江城| 卢龙县| 巴马| 内黄县| 蒲江县| 晋州市| 景洪市| 桂平市| 徐闻县| 青州市| 霍山县|