System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding(); byte[] byteArr = converter.GetBytes(content);

2.二進制數(shù)組轉為字符串 " /> 宅男在线观看免费高清网站,在线你懂的视频,国产婷婷色一区二区三区

色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

asp.net 字符串、二進制、編碼數(shù)組轉換函數(shù)

1.字符串轉二進制數(shù)組
string content="這是做個測試!";

System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
byte[] byteArr = converter.GetBytes(content);

2.二進制數(shù)組轉為字符串
復制代碼 代碼如下:
System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
string spcontent = converter.GetString(byteArr );


在編程中會遇到將文件以二進制數(shù)據(jù)保存到數(shù)據(jù)庫的情況,以將"C:/test.html"文件保存到數(shù)據(jù)庫和讀取出來為例:

1.將文件以流的形式保存到數(shù)據(jù)庫中:
復制代碼 代碼如下:
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)
  {//這里可以做相應的處理,如過濾文件中的數(shù)據(jù)
   sb.Append(sLine);

   }
 }

objReader.Close();

content= sb.ToString(); //如果你要將整個文件的內容顯示在界面上,你可以用<%=content%>放到相應的地方

      System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
      byte[] byteArr = converter.GetBytes(content);

//下面為插入到數(shù)據(jù)庫代碼,

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ù)庫中讀取保存為文件或者字符串和步驟1是一個相反的過程


1.將GB2312數(shù)據(jù)轉換為UTF-8數(shù)據(jù)如下(其他的編碼類推):
復制代碼 代碼如下:
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技術asp.net 字符串、二進制、編碼數(shù)組轉換函數(shù),轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 闽侯县| 正镶白旗| 池州市| 兰溪市| 大田县| 靖宇县| 遂平县| 临颍县| 汽车| 泰安市| 栾川县| 靖安县| 大姚县| 南京市| 柳州市| 萨嘎县| 永吉县| 乌兰浩特市| 浑源县| 天柱县| 大邑县| 衡东县| 乐业县| 揭东县| 襄城县| 西城区| 富蕴县| 蒙阴县| 乌恰县| 江陵县| 密山市| 绥德县| 浦江县| 谢通门县| 卓资县| 民乐县| 全椒县| 如东县| 宝山区| 晋中市| 山西省|