我想用C#从网络流中读取数据。
我有一个定期轮询的客户端列表但是当我开始从一个客户端读取数据时,我必须读取整个xml消息然后继续到下一个客户端。如果接收数据有一些延迟,我不应该去下一个客户端。我应该等一段时间来获取数据。而且,我不应该无休止地等待。短暂停留并在x秒后继续接下来的客户....
if(s.Available > 0)
{
//read data till i get the whole message.
//timeout and continue with other clients if I dont recieve the whole message
//within x seconds.
}
有没有办法在C#中优雅地做到这一点?
答案 0 :(得分:1)
据我所知,没有办法做到这一点,所以你很可能最终会使用多个线程。恕我直言,每个客户端使用一个线程首先是一个更清晰的解决方案,然后你可以在流上调用Read(),它可以花费它想要的时间,而其他线程对其他客户端做同样的事情
线程起初可能有点吓人,特别是如果你使用的是Windows Forms(代理到处都是!)而不是控制台应用程序,但它们非常有用。如果使用得当,它们可以提供很多帮助,特别是在网络领域。
答案 1 :(得分:0)
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
public class SynchronousSocketClient {
public static void StartClient() {
// Data buffer for incoming data.
byte[] bytes = new byte[1024];
// Connect to a remote device.
try {
// Establish the remote endpoint for the socket.
// This example uses port 11000 on the local computer.
IPHostEntry ipHostInfo = Dns.Resolve(Dns.GetHostName())
IPAddress ipAddress = ipHostInfo.AddressList[0];
IPEndPoint remoteEP = new IPEndPoint(ipAddress,11000);
// Create a TCP/IP socket.
Socket sender = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp );
// Connect the socket to the remote endpoint. Catch any errors.
try {
sender.Connect(remoteEP);
Console.WriteLine("Socket connected to {0}",
sender.RemoteEndPoint.ToString());
// Encode the data string into a byte array.
byte[] msg = Encoding.ASCII.GetBytes("This is a test<EOF>");
// Send the data through the socket.
int bytesSent = sender.Send(msg);
// Receive the response from the remote device.
int bytesRec = sender.Receive(bytes);
Console.WriteLine("Echoed test = {0}",
Encoding.ASCII.GetString(bytes,0,bytesRec));
// Release the socket.
sender.Shutdown(SocketShutdown.Both);
sender.Close();
} catch (ArgumentNullException ane) {
Console.WriteLine("ArgumentNullException : {0}",ane.ToString());
} catch (SocketException se) {
Console.WriteLine("SocketException : {0}",se.ToString());
} catch (Exception e) {
Console.WriteLine("Unexpected exception : {0}", e.ToString());
}
} catch (Exception e) {
Console.WriteLine( e.ToString());
}
}
public static int Main(String[] args) {
StartClient();
return 0;
}
}
(取自“msdn上的同步客户端套接字示例”
答案 2 :(得分:0)
不,没办法那样做。 TCP不保证一切都到达,因此您需要知道XML的大小才能知道是否所有内容都已到达。你不知道。正确?
使用异步方法是一种方法(并使用XML构建字符串)