程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> Asp.net把UTF-8編碼轉換為GB2312編碼

Asp.net把UTF-8編碼轉換為GB2312編碼

編輯:.NET實例教程
     最近在做的系統中,碰到了一個問題,交易系統采用的UTF-8編碼,而一些支持系統使用的是GB2312編碼。
  
  不同編碼的頁面、腳本之間互相引用,就會產生亂碼的問題,解決方法就是統一成一種編碼。
  ASP.Net 中,如果要修改輸出頁面的編碼,可以通過修改web.config中以下配置信息
  
  
  <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
  以上只是修改整體的默認編碼,如果只有某個頁的編碼需要修改,ASP.Net 中則可以簡單的使用下面代碼:
  
  
  注:加到Page_Load()事件下面就可以了
  Encoding gb2312 = Encoding.GetEncoding("gb2312");
  Response.ContentEncoding = gb2312;
  在非ASP.Net 應用中,可能你讀到的數據是UTF-8編碼,但是你要轉換為GB2312編碼,則可以參考以下代碼:
  
  
  
  string utfinfo = "document.write(\"alert('你好麼??');\");";
  string gb2312info = string.Empty;
  
  Encoding utf8 = Encoding.UTF8;
  Encoding gb2312 = Encoding.GetEncoding("gb2312");
  
  // Convert the string into a byte[].
  byte[] unicodeBytes = utf8.GetBytes(utfinfo);
  // Perform the conversion from one encoding to the other.
  byte[] asciiBytes = Encoding.Convert(utf8, gb2312, unicodeBytes);
  
  // Convert the new byte[] into a char[] and then into a string.
  // This is a slightly different approach to converting to illustrate
  // the use of GetCharCount/GetChars.
  char[] asciiChars = new char[gb2312.GetCharCount(asciiBytes, 0, asciiBytes.Length)];
  gb2312.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0);
  gb2312info = new string(asciiChars);
  
  當然,其他各種編碼之間的轉換,跟上述代碼也類似的,就不描述了。 
  
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved