我已经用C#编写了Server / Client程序的代码。不使用Thread
,它工作正常。如果我使用Thread
,则会收到error
消息。
The thread '' (0x9a8) has exited with code 0 (0x0).
public class MyServer{
public MyServer (){
...
...
System.Threading.Thread socThread = new System.Threading.Thread(new System.Threading.ThreadStart(receiveSockets));
socThread.Start();
}
private void receiveSockets()
{
try
{
while(true){
IPAddress ipadd = IPAddress.Parse(systemIPAddress);
TcpListener tcp = new TcpListener(ipadd, 8001);
tcp.Start();
Console.WriteLine("Waiting for client in 8001 port no");
Socket socket = tcp.AcceptSocket();
Console.WriteLine("Client address : " + socket.RemoteEndPoint);
System.Threading.Thread socThread = new System.Threading.Thread(new System.Threading.ParameterizedThreadStart(receiveData));
socThread.Start(socket);
}
}
catch (Exception e)
{
Console.WriteLine("Error in receive Sockets : " + e.Message);
}
}
private void receiveData(object obj)
{
try
{
while(true){
Socket socket = (Socket)obj;
byte[] data = new byte[1000];
int status = socket.Receive(data);
Console.WriteLine("Received 1.");
string content = Encoding.UTF8.GetString(data, 0, 1000);
Console.WriteLine("Received data 1 : " + content);
}
}
catch (Exception e)
{
Console.WriteLine("Error in receive Data : " + e.Message);
}
}
static void Main(string[] args){
MyServer server = new MyServer();
}
static void Main(string[] args) { TcpClient tcp = new TcpClient(); tcp.Connect("192.168.1.11", 8001); Stream stream = tcp.GetStream(); String msg = "Testing..."; byte[] content = new byte[msg.Length * sizeof(char)]; System.Buffer.BlockCopy(msg.ToCharArray(), 0, content, 0, content.Length); stream.Write(content, 0, content.Length); }
我得到以下输出。
IP Addrress : 192.168.1.11
Waiting for client in 8001 port no
Client address : 192.168.1.11:50140
The thread '' (0x9a8) has exited with code 0 (0x0).
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
The thread '' (0x1760) has exited with code 0 (0x0).
Error in receive Data : An existing connection was forcibly closed by the remote host
The program '[1396] Window_Server.vshost.exe: Managed (v4.0.30319)' has exited with code 0 (0x0).
请帮我解决这个问题。
答案 0 :(得分:3)
“线程''(0x9a8)已退出,代码为0(0x0)。”不是错误。它只是告诉你后台线程已经退出。零意味着线程成功运行并退出。
异常在receiveData(object obj)中,因为您应该能够告诉,在给定异常的情况下,“接收数据出错:远程主机强行关闭现有连接”。
如果您发布了正在使用的客户端程序,我可能会提供帮助。
答案 1 :(得分:3)
您需要弄清楚为什么要抛出套接字异常。如果您阅读Socket.Receive的文档,您会看到此部分:
注意
如果收到SocketException,请使用SocketException.ErrorCode属性获取特定的错误代码。 获取此代码后,请参阅Windows套接字 MSDN库中的版本2 API错误代码文档 错误的详细描述。
表示link向您展示了如何阅读错误代码:
ErrorCode属性包含与之关联的错误代码 导致异常的错误。
SocketException的默认构造函数设置ErrorCode 属性发生的最后一个操作系统错误。更多 有关套接字错误代码的信息,请参阅Windows套接字版本 2 MSDN中的API错误代码文档。
哪个应该带你到error codes page。
现在,根据您未提供的错误代码,您可以诊断网络问题。
答案 2 :(得分:2)
问题是Main()不会等待套接字完成他们的工作。一旦它创建了线程,它就存在......并且线程被破坏。
只要程序仅在整个作业完成时存在,您需要通过使用某种类型的事件或者从Main()或MyServer()中休眠来等待套接字处理线程。 / p>