首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

ftp上传文件 用进度条progressBar显示进度()

2012-03-29 
ftp上传文件 用进度条progressBar显示进度(在线等)public class upload : Mypublic{public delegate void

ftp上传文件 用进度条progressBar显示进度(在线等)

 public class upload : Mypublic
  {
  public delegate void delProgress(int value);
  public event delProgress eventProgress;

  public delegate void delFinish();
  public event delFinish eventFinish;

  public string fileName = "";
  private long current = 0;
  private long total = 1;
  private int percent = 0;
  int temp = 0;

  public void Upload() 
  {
  FileInfo fileinfo = new FileInfo(fileName);
  string uri = "ftp://" + IpAddress + "/" + fileinfo.Name;
  FtpWebRequest reqFtp;

  reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + IpAddress + "/" + fileinfo.Name));
  reqFtp.Credentials = new NetworkCredential(Userid, Password);
  reqFtp.KeepAlive = false;
  reqFtp.Method = WebRequestMethods.Ftp.UploadFile;
  reqFtp.UseBinary = true;

  reqFtp.ContentLength = fileinfo.Length;
  total = fileinfo.Length;

  int bufferlenth = 2048;
  byte[] buff = new byte[bufferlenth];
  int contentLen;

  FileStream fs = fileinfo.OpenRead();

  try
  {
  Stream strm = reqFtp.GetRequestStream();
  contentLen = fs.Read(buff, 0, bufferlenth);

  while (contentLen != 0)
  {
  strm.Write(buff, 0, bufferlenth);
  contentLen = fs.Read(buff, 0, bufferlenth);

  current += contentLen;
temp = Int32.Parse((100 * current / total).ToString());
if (temp != percent)
{
eventProgress(temp);
percent = temp;
} }
  strm.Close();
  fs.Close();

  eventFinish();
  }
  catch (Exception ex) 
  {
  MessageBox.Show(ex.Message, "Upload Error");
  }
  }
  }

按钮事件
  private void button1_Click(object sender, EventArgs e)
  {
  if (DialogResult.OK == this.openFileDialog1.ShowDialog())
  {
  upload up = new upload();
  up.IpAddress = "192.168.1.31";
  up.Userid = "Administrator";
  up.Password = "110";
  up.fileName = this.openFileDialog1.FileName;

  up.eventProgress += new upload.delProgress(up_eventProgress);
  up.eventFinish += new upload.delFinish(up_eventFinish);

  Thread t = new Thread(new ThreadStart(up.Upload));
  t.Start();
  }
  }

  void up_eventFinish()
  {
  up_eventProgress(100);
  MessageBox.Show("上传成功!");
  }

  void up_eventProgress(int value)
  {
  this.progressBar1.Value = value;
this.label1.Text = value.ToString() + "%"; }

运行之后报错 :线程间操作无效:从不是创建控件ProgressBar1的线程访问它 
请教高手!在线等~~


[解决办法]
Invoke或beginInvoke
[解决办法]
用委托试试。。。
因为线程不能直接访问控件。。。
[解决办法]
http://www.cnblogs.com/symbol441/archive/2007/11/15/960529.html
[解决办法]
动用到窗体上显示属于的界面绘制和重绘工作的一部分。

这部分工作必须使用窗体本身的消息循环线程来进行处理,其它工作线程不会起到立即更新的作用。

可以使用 invoke方法,将窗体中修改进度条属性的方法单独写个方法。

在工作线程中,调用窗体对象的invoke方法去返调窗体中的修改进度条方法的方法实例(也可以使用委托传递)


这样就可以保证工作程中执行的那个修改另一个窗体进度条的操作是使用了窗体身体消息循环线程进行执行的。这样就可以保证即时的更新UI.
[解决办法]
http://bbs.bccn.net/thread-103479-1-1.html
[解决办法]
你把你的up_eventProgress方法写成这样试试看。

C# code
void up_eventProgress(int value) {  if(this.InvokeRequired)  {    this.Invoke(new delProgress(up_eventProgress),value)   }  else  {    this.progressBar1.Value = value;     this.label1.Text = value.ToString() + "%";   }}
[解决办法]
把窗口对象传到这个类里 public class upload : Mypublic 

例如,窗口对象名为 up
则在更改进度时,调用方法为:
将原来 eventProgress(temp); 
改为
up.invoke(up.eventProgress,new object[]{temp});

试试。

热点排行