字符串转utf8编码

url字符串中存在中文,需要把中文转换成utf8编码,我所知道的四种方法: Uri.EscapeUriString ,Uri.EscapeDataString ,HttpUtility.UrlEncode,WWW.EscapeURL: 

HttpUtility.UrlEncode存在System.Web中,需要在C:\Windows\Microsoft.NET\Framework64\对应版本下找到System.Web.dll放到项目的Plugins文件夹下

感觉Uri.EscapeUriString比较强大,可以自动分辨出字符串中需要转码的部分,后面三种都一样要自己指定哪部分要转码,实例如下:


string URL = Uri.EscapeUriString(string.Format("http://apicloud.mob.com/v1/weather/query?key={0}&city={1}&province={2}", _AppKey, city, province));


string URL=string.Format("http://apicloud.mob.com/v1/weather/query?key={0}&city={1}&province={2}", _AppKey, HttpUtility.UrlEncode(city), HttpUtility.UrlEncode(province));

你可能感兴趣的:(Unity学习总结)