国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

C# 實現(xiàn)Url編碼和解碼

發(fā)布時間:2018-04-29 21:38 作者:獨孤劍 閱讀:3756

代碼如下:

string url = "http://www.abc.com/這里是中文測試參數(shù)";

// 方式一
// 編碼 http%3a%2f%2fwww.abc.com%2f%e8%bf%99%e9%87%8c%e6%98%af%e4%b8%ad%e6%96%87%e6%b5%8b%e8%af%95%e5%8f%82%e6%95%b0
string urlEncode = System.Web.HttpUtility.UrlEncode(url);

// 解碼
string urlDecode = System.Web.HttpUtility.UrlDecode(urlEncode);

// 編碼時指定編碼
System.Web.HttpUtility.UrlEncode(url, System.Text.Encoding.UTF8);
System.Web.HttpUtility.UrlEncode(url, System.Text.Encoding.Unicode);
System.Web.HttpUtility.UrlEncode(url, System.Text.Encoding.GetEncoding("GB2312"));

// 解碼時指定編碼
System.Web.HttpUtility.UrlDecode(url, System.Text.Encoding.UTF8);
System.Web.HttpUtility.UrlDecode(url, System.Text.Encoding.Unicode);
System.Web.HttpUtility.UrlDecode(url, System.Text.Encoding.GetEncoding("GB2312"));


// 方式二, 只能在在aspx, ashx, controller中使用
// 編碼 http%3a%2f%2fwww.abc.com%2f%e8%bf%99%e9%87%8c%e6%98%af%e4%b8%ad%e6%96%87%e6%b5%8b%e8%af%95%e5%8f%82%e6%95%b0
string urlEncode2 = System.Web.HttpContext.Current.Server.UrlEncode(url);

// 解碼
string urlDecode2 = System.Web.HttpUtility.UrlDecode(urlEncode);


微信打賞, 微信掃一掃

支付寶打賞, 支付寶掃一掃

如果文章對您有幫助,歡迎給作者打賞

作者最新文章
開發(fā)過程中解決360兼容模式瀏覽器的方法
云南象群向西南方向遷移,云南離群獨象距離象群約12公里
吉林做網(wǎng)站最低價格,吉林企業(yè)網(wǎng)站建設價格低至500元起
守象人直擊云南象群最新動向
網(wǎng)站影響百度蜘蛛抓取量的因素有哪些?為什么我的網(wǎng)站Baidu蜘蛛來的次數(shù)少?
企業(yè)名片
在線客服