将unicode String从C#发送到Java

时间:2011-10-25 01:47:43

标签: c# java sockets unicode-string

在C#端,我有这个代码发送unicode String

    byte[] b = System.Text.Encoding.UTF8.GetBytes(str);
    string unicode = System.Text.Encoding.UTF8.GetString(b);
    //Plus \r\n for end of send string
    SendString(unicode + "\r\n");


   void SendString(String message)
    {
        byte[] buffer = Encoding.ASCII.GetBytes(message);
        AsyncCallback ac = new AsyncCallback(SendStreamMsg);
        tcpClient.GetStream().BeginWrite(buffer, 0, buffer.Length, ac, null);
    }

    private void SendStreamMsg(IAsyncResult ar)
    {
        tcpClient.GetStream().EndWrite(ar);
        tcpClient.GetStream().Flush(); //data send back to java
    }

这是Java方面

     Charset utf8 = Charset.forName("UTF-8");
        bufferReader = new BufferedReader(new InputStreamReader(
                sockServer.getInputStream(),utf8));
     String message = br.readLine();

问题是我无法在Java端接收unicode字符串。怎么解决呢?

1 个答案:

答案 0 :(得分:3)

你的问题有点含糊不清;你说你不能在Java端接收unicode字符串 - 你是收到错误,还是得到一个ASCII字符串?我假设您正在获取ASCII字符串,因为这是您的SendString()方法发送的,但可能还有其他问题。

您的SendString()方法首先将传入的字符串转换为ASCII编码的字节数组;将ASCII更改为UTF8,您应该发送UTF-8:

void SendString(String message)
{
    byte[] buffer = Encoding.UTF8.GetBytes(message);
    AsyncCallback ac = new AsyncCallback(SendStreamMsg);
    tcpClient.GetStream().BeginWrite(buffer, 0, buffer.Length, ac, null);
}

在此方法定义之上,您似乎也有很多不必要的编码工作,但没有更多背景,我无法保证上面的编码工作是不必要的......