一段时间以来,我一直在与后台工作人员作斗争,我开始怀疑一个人可以用 bw 做什么是有限制的。我正在尝试利用 bw 来处理 TCPIP 交换,同时使用其ProgressChanged
方法更新 UI。我知道 UI 更新没问题,但我的DoWork
例程(如下所示)有时会导致 bw 线程消失/停止工作。有没有其他人有这个问题?
private void TCPIP_DoWork(object sender, DoWorkEventArgs e)
{
int a = 0;
s.Send(System.Text.Encoding.ASCII.GetBytes("s"));
if (worker.CancellationPending == true)
{
s.Send(System.Text.Encoding.ASCII.GetBytes("t"));
}
else
{
try
{
a = s.Available;
s.Receive(bytes);
Thread.Sleep(25);
using (Stream fileStream = new FileStream(@sbpFile.Text,
FileMode.Append, FileAccess.Write, FileShare.None))
{
using (BinaryWriter bw = new BinaryWriter(fileStream))
{
if (a == 0)
Thread.Sleep(20);
else if (a < 1023)
{
bw.Write(bytes, 0, a);
Thread.Sleep(20);
}
else
{
bw.Write(bytes, 0, 1024);
Thread.Sleep(20);
}
}
}
}
catch(Exception e)
{
Console.WriteLine("{0} Exception.", e);
}
}
}
注意:那些 Thread.Sleep() 操作在那里的唯一原因是因为它们似乎是让 bw 不会自己绊倒的临时修复......