我尝试在 C# 应用程序中使用 telnet 连接到我的 TeamSpeak 3 服务器。
顺便说一句,我使用 telnet ^^' 的经验不是很丰富,所以我在站点 https://msdn.microsoft.com/en-us/library/system.net.sockets.tcpclient(VS. 80).aspx
以下代码应:
- 连接到 teampeak 服务器
- 发送密码并读出欢迎信息
发送命令“帮助”并读出帮助信息
string command = "help"; // creates new TCP client TcpClient client = new TcpClient(adress, port); // get client stream NetworkStream stream = client.GetStream(); // send Password Byte[] data = System.Text.Encoding.ASCII.GetBytes(password); stream.Write(data, 0, data.Length); data = new Byte[256]; Thread.Sleep(200); Int32 bytes = stream.Read(data, 0, data.Length); String responseData = System.Text.Encoding.ASCII.GetString(data, 0, bytes); Console.WriteLine(responseData); // send the given command Byte[] data2 = System.Text.Encoding.ASCII.GetBytes(command); stream.Write(data2, 0, data2.Length); data2 = new Byte[2560]; Thread.Sleep(200); Int32 bytes2 = stream.Read(data2, 0, data2.Length); String responseData2 = System.Text.Encoding.ASCII.GetString(data2, 0, bytes2); Console.WriteLine(responseData2); // end stream and client stream.Close(); client.Close();
第一个查询正常工作,并将欢迎消息写入控制台。但是在Int32 bytes2 = stream.Read(data2, 0, data2.Length);
第二个查询中,应用程序停止而不返回任何异常。
谁能解释为什么我无法读出帮助消息?