1

我正在向 Socket 和连接发送数据并检索一些数据。我正在检索的数据(这是一个 XML 文档)包含像 ä,ü,ö,... 这样的变音符号,但这些没有正确编码,我只得到 ? 或 )))@ 符号而不是变音符号。

我如何检索数据有什么不正确的吗?数据以 ISO-8859-1 编码发回。

我的代码:

public bool GetData()
    {
        try
        {
            TcpClient tcpClient = new TcpClient("THEIP", 5004);

            NetworkStream ns = tcpClient.GetStream();

            if (ns.CanWrite)
            {
                string text = this.xmlRequest;
                byte[] sendBytes = Encoding.ASCII.GetBytes(text);

                string sendData = Encoding.ASCII.GetString(sendBytes);

                ns.Write(sendBytes, 0, sendBytes.Length);
            }

            System.Threading.Thread.Sleep(2000);

            int i = 0;

            if (ns.CanRead)
            {
                do
                {

                    byte[] recvBytes = new byte[tcpClient.ReceiveBufferSize];

                    i = i + ns.Read(recvBytes, 0, tcpClient.ReceiveBufferSize);



                    string returnData = Encoding.ASCII.GetString(recvBytes);

                    returnData = returnData.Substring(0, i);

                    this.xmlResponse = returnData;

                } while (ns.DataAvailable);
            }

            // got full data...
            bool status = this.ProcessXMLData();
            ns.Close();

            if (status)
            {
                return true;
            }
            else
            {
                return false;
            }


        }
        catch (SocketException se)
        {
            this.errorFlag = true;
            this.errorMessage = se.Message;
            return false;
        }
    }
4

1 回答 1

3

如果您确定正在使用的编码是 ISO-8859-1,那么不要Encoding.ASCII使用Encoding.GetEncoding("ISO-8859-1")

于 2012-10-16T10:47:17.330 回答