真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

URL中文編碼-創(chuàng)新互聯

       ///
       /// GB2312編碼
      ///

       /// 待編碼字符
       /// 編碼結果
      URL中文編碼
 1public static string GB2312(string str)
 2         {
 3             StringBuilder sb = new StringBuilder();
 4  //GB2321的編碼方式 5  byte[] byStr = System.Text.Encoding.GetEncoding ("GB2312").GetBytes(str);
 6  for (int i = 0; i < byStr.Length; i++)
 7             {
 8   //轉換為16進制方式 可選2,8,10,16進制 9                 sb.Append(@"%" + Convert.ToString(byStr[i], 16));
10             }
11  return (sb.ToString());
12         }
View Code

        ///


       /// GB2312解碼
       ///

       ///
       ///

在甘井子等地區(qū),都構建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供網站制作、做網站 網站設計制作按需策劃設計,公司網站建設,企業(yè)網站建設,高端網站設計,全網整合營銷推廣,成都外貿網站建設,甘井子網站建設費用合理。
 1 public static string DeGB2312(string str)
 2         {
 3  byte[] bytes = new byte[str.Split('%').Length ];
 4  int i=0;
 5  foreach (var item in str.Split('%'))
 6             {
 7   if (item !="")
 8                 {
 9 //轉換為16進制的字節(jié)10                     bytes[i] = Convert.ToByte(item,16);
11                     i++;
12                 }
13               
14             }
15  //GB2312的解碼16  return Encoding.GetEncoding ("GB2312").GetString(bytes);
17         }
View Code

       ///


       /// UTF8編碼
       ///

       ///
       ///

 1 public static string EnUTF8(string str)
 2         {
 3             StringBuilder sb = new StringBuilder();
 4  byte[] byStr = System.Text.Encoding.UTF8.GetBytes(str);
 5  for (int i = 0; i < byStr.Length; i++)
 6             {
 7                 sb.Append(@"%" + Convert.ToString(byStr[i], 16));
 8             }
 9 
10  return (sb.ToString());
11         }
View Code

       ///


       /// UTF8解碼
       ///

       ///
       ///

 1 public static string DeUTF8(string str)
 2         {
 3  byte[] bytes = new byte[str.Split('%').Length ];
 4  int i=0;
 5  foreach (var item in str.Split('%'))
 6             {
 7   if (item !="")
 8                 {
 9                     bytes[i] = Convert.ToByte(item,16);
10                     i++;
11                 }
12               
13             }
14  return Encoding.UTF8.GetString(bytes);
15         }
View Code

 ///C# 32位md5
///


/// 獲得32位的MD5加密
///

/// 加密字符串
/// 返回值

1 public static string GetMD532(string str)
2 {
3     MD5 md5 = MD5.Create();
4   byte[] d = md5.ComputeHash(Encoding.Default.GetBytes(str));
5   return BitConverter.ToString(d).Replace("-", "").ToLower();
6 
7 }
View Code
分享名稱:URL中文編碼-創(chuàng)新互聯
分享鏈接:http://weahome.cn/article/jcocj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部