.net和JAVA字符串转换为字节数组

时间:2021-11-22 10:47:25
1 .NET
     
 byte[] bytestr = System.Text.Encoding.UTF8.GetBytes("中国");

        Label1.Text = bytestr.Length.ToString();

具体的内容封装在mscorlib.dll中,不知道 GetBytes()怎么实现的?有谁知道请告诉我一下。

2 JAVA
      
        String str = "马";
        try
        {
            strByte = str.getBytes("UTF-8");
            System.out.println(strByte.length);
          

        }
        catch(Exception e)
        {
           e.getStackTrace();
        }

 同样代码封装了,调用了这个函数CharToByteConverter.getConverter(csn)的用法不清楚。有谁知道!不吝赐教!非常感谢!