#查询中文汉字GBK编码 c#中文gbk编码查询代码实例
人气:0想了解c#中文gbk编码查询代码实例的相关内容吗,在本文为您仔细讲解#查询中文汉字GBK编码的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:gbk编码查询,下面大家一起来学习吧。
复制代码 代码如下:
private void button_Inquriy_Click(object sender, EventArgs e)
{
if (textBox_Inquiry.TextLength > 0)
{
String strInquiry = textBox_Inquiry.Text;
byte[] bytes = Encoding.GetEncoding("GB2312").GetBytes(strInquiry);
String strResult = String.Empty;
foreach (byte b in bytes)
{
strResult += b.ToString("X2");
strResult += " ";
}
textBox_Result.Text = strResult;
}
else
{
MessageBox.Show("请输入待查询的字符");
}
}
加载全部内容