希望帮帮忙!

解决方案 »

  1.   

    using System;
    using System.Text;...
    Encoding eKorea = Encoding.GetEncoding(949); // 949 韩文代码页,你的机器上必须支持。string strKorea = eKorea.GetString(bytesKorea);  // bytesJapan 是已获得的韩文字节数组
      

  2.   

    我写了出来,不过有错误啊! private void button1_Click(object sender, System.EventArgs e)
    {
    byte [] buf = System.Text.Encoding.Unicode.GetBytes(this.textBox1.Text); Encoding eKorea = Encoding.GetEncoding(949); // 949 韩文代码页,你的机器上必须支持。 string strKorea = eKorea.GetString(buf);  // bytesJapan 是已获得的韩文字节数组 this.textBox2.Text=strKorea.ToString();
    }