本文介绍了为什么我的c#程序没有显示套接字中的任何字节的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的c#程序没有显示文本框中的字节..请帮助查找错误
my c# program not showing the bytes in textbox.. please help to find error
private void button1_Click(object sender, EventArgs e)
{
sck = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IPEndPoint localEndPoint = new IPEndPoint(IPAddress.Parse("192.168.0.177"), 80);
textBox2.Text = localEndPoint.ToString();
try
{
sck.Connect(localEndPoint);
byte[] bytes = new byte[9600];
string o = Encoding.UTF8.GetString(bytes);
textBox1.Text = o;
sck.Close();
}
catch
{
Console.Write("Unable to Connect \r\n");
textBox1.Text = "error";
}
}
推荐答案
这篇关于为什么我的c#程序没有显示套接字中的任何字节的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!