C# WINFORM ,如何将一个中文字符串转换成UTF-8
举个例子,在以下这个网址输入“中国”,他就会自动把“中国”转换成“%E4%B8%AD%E5%9B%BD” ,我想知道的是,在C# WINFORM里,如何将汉字转换成那种形式,比如将“中国”转换成“E4%B8%AD%E5%9B%BD”
我说的是WINFORM ,一楼说的Server.HTMLEncode 是ASP.NET里的吧?
using System.Text;
byte[] buffer = Encoding.GetEncoding("碰源utf-8"携吵唯).GetBytes("中国");
string str = "";
foreach (byte b in buffer) str += string.Format("辩培%{0:X}", b);
private void button1_Click(object sender, EventArgs e)
{
string temp = string.Empty;
UTF8Encoding utf8 = new UTF8Encoding();
byte[] encodedBytes = utf8.GetBytes("中国"早扰);
foreach (byte b in encodedBytes)
{
temp+="%"+b.ToString("X");
}
MessageBox.Show(temp);
}
试试吧,应该是你想陆宏旦要的了,或者以下这种绝枯形式:
string temp = string.Empty;
byte[] encodedBytes = Encoding.GetEncoding("utf-8").GetBytes("中国");
foreach (byte b in encodedBytes)
{
temp+="%"+b.ToString("X");
}
MessageBox.Show(temp);
使蔽乱袭用 //Byte[] bytes = System.Text.Encoding.UTF8.GetBytes("宏兄陪毁中国");
直接引用System.Web
然后用里面败胡的System.Web.Ultility.UrlEncode
有正碰重载,第二个参数可以定义什察清拦么样的编码
这个谈答盯是用 Server.HTMLEncode 编举消码的含和~ 解码时用 Server.HTMLDecod
还有 Server.URLEncode 和 Server.URLDecod