c#中文gbk编码查询示例代码

Amber ·
更新时间:2024-11-10
· 862 次阅读

代码如下:
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("请输入待查询的字符");
     }
 }

您可能感兴趣的文章:C#判断字符编码的方法总结(六种方法)c#通过unicode编码判断字符是否为中文示例分享c#字符串编码编码(encoding)使用方法示例C#中字符串编码处理c# Base64编码和图片的互相转换代码C# Base64编码函数asp.C#实现图片文件与base64string编码解码C#实现获取文本文件的编码的一个类(区分GB2312和UTF8)C# Quoted-Printable编码、解码C#简单判断字符编码的方法



C# 示例 gbk编码 gbk

需要 登录 后方可回复, 如果你还没有账号请 注册新账号