|
string content="這是做個(gè)測(cè)試!";
System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
byte[] byteArr = converter.GetBytes(content);
2.二進(jìn)制數(shù)組轉(zhuǎn)為字符串
復(fù)制代碼 代碼如下:
System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
string spcontent = converter.GetString(byteArr );
在編程中會(huì)遇到將文件以二進(jìn)制數(shù)據(jù)保存到數(shù)據(jù)庫(kù)的情況,以將"C:/test.html"文件保存到數(shù)據(jù)庫(kù)和讀取出來(lái)為例:
1.將文件以流的形式保存到數(shù)據(jù)庫(kù)中:
復(fù)制代碼 代碼如下:
int itag=0;
string content = "";
StringBuilder sb = new StringBuilder();
string fileName = @"c:/test.html";
StreamReader objReader = new StreamReader(fileName, System.Text.Encoding.GetEncoding("gb2312"));
string sLine = "";
while (sLine != null)
{
sLine = objReader.ReadLine();
if (sLine != null)
{//這里可以做相應(yīng)的處理,如過(guò)濾文件中的數(shù)據(jù)
sb.Append(sLine);
}
}
objReader.Close();
content= sb.ToString(); //如果你要將整個(gè)文件的內(nèi)容顯示在界面上,你可以用<%=content%>放到相應(yīng)的地方
System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
byte[] byteArr = converter.GetBytes(content);
//下面為插入到數(shù)據(jù)庫(kù)代碼,
strInsertCmd = "insert into Document (DocumentID,DocumentContent,addtime,MODITIME,status) values ('" + DocumentID + "',?,'" + NOWTIME + "','" + NOWTIME + "',' 00 ')";
cmd=new OleDbCommand(strInsertCm,ConnectionOBJ);
param = new OleDbParameter("DocumentContent", OleDbType.VarBinary, byteArr.Length, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, byteArr);
cmd.Parameters.Add(param);
itag=cmd.ExecuteNonQuery();
if(itag>0){//成功!}
2.從數(shù)據(jù)庫(kù)中讀取保存為文件或者字符串和步驟1是一個(gè)相反的過(guò)程
1.將GB2312數(shù)據(jù)轉(zhuǎn)換為UTF-8數(shù)據(jù)如下(其他的編碼類推):
復(fù)制代碼 代碼如下:
public string GB2312ToUTF8(string sSourse) {
string Utf8_info = string.Empty;
Encoding utf8 = Encoding.UTF8;
Encoding gb2312 = Encoding.GetEncoding("gb2312");
byte[] unicodeBytes = gb2312.GetBytes(sSourse);
byte[] asciiBytes = Encoding.Convert(gb2312, utf8, unicodeBytes);
char[] asciiChars = new char[utf8.GetCharCount(asciiBytes, 0, asciiBytes.Length)];
utf8.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0);
Utf8_info = new string(asciiChars);
return Utf8_info;
}
AspNet技術(shù):asp.net 字符串、二進(jìn)制、編碼數(shù)組轉(zhuǎn)換函數(shù),轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。