我正在Microsoft Visual Studio 2013专业C#中编写我的程序。我使用了调试器,我查看了名为Message3的数组,它有正确的信息,但当它到达连接的计算机modbus程序时,消息是不同的。所以我使用Wireshark和wireshark同意Modbus程序。这很奇怪,因为它只对某些值有效 就像modbus中的值7600一样,它在两个寄存器中发送为29和176,我的程序在数组中有,但wireshark看到29 194 176。 它以某种方式添加了194不在我的阵列中。
[0] 0 '\0' char
[1] 4 '' char
[2] 0 '\0' char
[3] 0 '\0' char
[4] 0 '\0' char
[5] 5 '' char
[6] 1 '' char
[7] 3 '' char
[8] 2 '' char
[9] 29 '' char
[10] 176 '°' char
这是我的调试器所具有的,这就是线鲨看到的: 0 4 0 0 0 6 1 3 0 5 0 1 03 02 1d c2 b0
我试过了:writer.Flush和writer.FlushAsync但没有任何帮助。 再次,这也只是一些价值观。 这是我的代码:
void Listener_function()
{
IPHostEntry host;
string localIP = "?";
host = Dns.GetHostEntry(Dns.GetHostName());
listener = null;
try
{
listener = new TcpListener(IPAddress.Parse(Moxa_IPtxt.Text), Convert.ToInt16(modemPorttxt.Text));
listener.Start();
// ErrorBox.Text = " EchoServer started ... /n";
connect_flag = true;
MessageBox.Show(" waiting for incoming client connections.../n /r");
client = listener.AcceptTcpClient();
MessageBox.Show(" Accepted new client coneection ...");
StreamReader reader = new StreamReader(client.GetStream());
StreamWriter writer = new StreamWriter(client.GetStream());
while (true)
{
string s = string.Empty;
char[] temp = new char[12];
int s1 = reader.Read(temp, 0, 12);
int Registers_number = (((int)temp[10] << 8) + (int)temp[11]);
int Message_Size = (Registers_number * 2) + 9;
char[] Message3 = new char[Message_Size];
TCPProcessing(temp, Message3);
if (writeData == true)
{
writer.Write(Message3);
// writer.Flush();
writer.FlushAsync();
}
}
}
catch (Exception e)
{
MessageBox.Show(e.ToString());
//button1.Text = "Connect";
//ErrorBox.Text = e.ToString();
}
finally
{
if (listener != null)
{
listener.Stop();
}
}
}
任何想法?
再次,我在FlushAsync之后有一个断点,我复制了什么消息,它没有194(请参见上文)
答案 0 :(得分:0)
请勿使用StreamReader / StreamWriter进行 text 操作。直接使用client.GetStream
这是一个向您展示的代码
var m = new MemoryStream();
var wr = new StreamWriter(m);
wr.Write(new char[] { (char)29, (char)176 }, 0, 2);
wr.Flush();
var bytes2 = m.ToArray();
bytes2 的内容是: 29,194,176 ,就像您的情况一样。所以我再说一遍,使用 client.GetStream ,而不是 StreamReader / StreamWriter