c#漢字與編碼之間的轉換(輸出十六進位)

來源:互聯網
上載者:User

標籤:

 /******************************************************************/        /***********************               ****************************/        /*********************** 漢字轉換工具  ****************************/        /***********************               ****************************/        /******************************************************************/        /****************************  字串轉編碼函數 **********************************/        private byte[] StringToBytes(string TheString)        {            Encoding encoding = Encoding.GetEncoding("UTF-8");            Encoding encoding2 = Encoding.GetEncoding("gb2312");            byte[] bytes = encoding.GetBytes(TheString);            return Encoding.Convert(encoding, encoding2, bytes);        }        /****************************  編碼轉字串函數 **********************************/        private string BytesToString(byte[] Bytes)        {            Encoding encoding = Encoding.GetEncoding("gb2312");            Encoding encoding2 = Encoding.GetEncoding("UTF-8");            byte[] bytes = Encoding.Convert(encoding, encoding2, Bytes);            return encoding2.GetString(bytes);        }        /****************************  單擊轉換按鈕事件 **********************************/        private void Changez_Click(object sender, EventArgs e)        {            if (this.CHcode.Checked)//判斷什麼類型的轉換            {                byte[] array = this.StringToBytes(this.intextz.Text);                this.outtextz.Text = "";                byte[] array2 = array;                for (int i = 0; i < array2.Length; i++)                {                    byte b = array2[i];                    string text = b.ToString("x").ToUpper();                    TextBox expr_64 = this.outtextz;                    expr_64.Text = expr_64.Text + "0x" + ((text.Length == 1) ? ("0" + text) : text) + " ";                }            }            else            {                if (!this.CHcode.Checked)                {                    byte[] array3 = new byte[this.intextz.Text.Length / 2];                    try                    {                        string text2 = this.intextz.Text;                        text2 = text2.Replace("0x", "");                        text2 = text2.Replace(" ", string.Empty);                        for (int j = 0; j < text2.Length / 2; j++)                        {                            array3[j] = Convert.ToByte(text2.Substring(j * 2, 2), 16);                        }                        this.outtextz.Text = this.BytesToString(array3);                    }                    catch                    {                        MessageBox.Show("資料轉換錯誤,請輸入數字。", "錯誤");                    }                }            }        }

 

c#漢字與編碼之間的轉換(輸出十六進位)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.