C#TCP通信问题: 客户端发送的消息只能收到第一条,必须断开重新连接,服务器才能再次收到信息,为什么?

代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSyst... 代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
using System.Threading;
namespace TcpServers
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private Thread thread;
private TcpListener listener;
private TcpClient client;
private static string massege="";
private void ShowMassege() //在接收消息窗口显示消息
{
while (massege != "")
{
try
{
rtbread.AppendText(massege);
rtbread.ScrollToCaret();
massege = "";
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
}
private void StartListen() //开始监听
{
//获取IP地址
string hostname = Dns.GetHostName();
IPAddress[] IP = Dns.GetHostAddresses(hostname);
// MessageBox.Show(IP[4].ToString());
listener=new TcpListener(IP[4] ,8000) ;
listener.Start();
while (true ) //获取消息
{
client = listener.AcceptTcpClient();
NetworkStream netstm = client.GetStream();
byte[] mybyte = new byte[1024];
int length = netstm.Read(mybyte, 0, mybyte.Length);
massege = Encoding.Default.GetString(mybyte, 0, length);
}
}
private void Form1_Load(object sender, EventArgs e)
{
//显示本机IP
IPAddress[] IP = Dns.GetHostAddresses(Dns.GetHostName());
this.labelIP.Text = IP[4].ToString();
thread = new Thread(new ThreadStart(this.StartListen));
thread.Start();
timer1.Start();
}
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
if (this.listener != null) //判断侦听对象是否关闭
{
listener.Stop(); //停止侦听
}
if (thread != null) //判断线程是否为空
{
if (thread.ThreadState == ThreadState.Running) //判断线程是否正在运行
{
thread.Abort(); //终止线程
}
}
}
private void timer1_Tick(object sender, EventArgs e)
{
ShowMassege();
}
}
}
展开
 我来答
草薙在
2012-09-15 · TA获得超过4795个赞
知道大有可为答主
回答量:6187
采纳率:50%
帮助的人:6242万
展开全部
你代码写的有问题,Encoding没办法处理断掉的字节,比如现在utf-8有可能用三个字节存储一个数据,当只发送了一个或者两个,Encoding就只能返回前面的数据了。

建议你使用Encoder和Decoder发送数据,他会记住之前解析不了的数据,并且和新的数据合并。
追问
我是用Encoding接收消息啊。
你说的那两个Encoder,Decoder怎么接收消息啊?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式