我的代码与我在下面复制的帖子Read bytes from NetworkStream (Hangs)非常相似。 (我意识到这是c# - 我需要一个vb解决方案)
// Create a TcpClient.
// Note, for this client to work you need to have a TcpServer
// connected to the same address as specified by the server, port
// combination.
TcpClient client = new TcpClient(server, port);
// Translate the passed message into ASCII and store it as a Byte array.
Byte[] data = System.Text.Encoding.ASCII.GetBytes(message);
// Get a client stream for reading and writing.
NetworkStream stream = client.GetStream();
// Send the message to the connected TcpServer.
stream.Write(data, 0, data.Length);
Console.WriteLine("Sent: {0}", message);
// Receive the TcpServer.response.
// Buffer to store the response bytes.
data = new Byte[256];
// String to store the response ASCII representation.
String responseData = String.Empty;
// Read the first batch of the TcpServer response bytes.
Int32 bytes = stream.Read(data, 0, data.Length);
responseData = System.Text.Encoding.ASCII.GetString(data, 0, bytes);
Console.WriteLine("Received: {0}", responseData);
// Close everything.
stream.Close(); client.Close();
我的问题在于:
我有一个表单,用于输入要查找的tif文件的用户输入(最终是getBytes(消息))。当这样做时,它总是返回一个结果 - 第一个符合标准的tif文件,但是,我知道在某些情况下我应该收到多个匹配。
然后我将结果发送到图片框,并且应该能够滚动浏览结果(这部分工作正常)
我尝试了几种方法来获得多个结果,但也许我错过了明显的结果?我最好的猜测是使用asyncronous beginread / write .... 我尝试过使用for循环,但最终得到了一堆相同的tif文件......
任何人都可以帮助我(即使是通用方向)?我不是专业人士。在此先感谢您的帮助。
答案 0 :(得分:0)
我最终发现了问题所在。我正在寻找的数据没有标准化,因此结果是一遍又一遍的相同数据。我改变了我要找的东西, tada 它有效。无论如何,谢谢你的帮助