资源简介
C#利用Remoting实现服务器与客户端文件的上传与下载
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.Remoting;
using System.IO;
using System.Threading;
namespace Client
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false;
OpenUrl();
}
long CountLen = 0;
long Len = 0;
Remoteobject.Myobject app;
public void Upload(string filename)
{
if(filename==““)
{
MessageBox.Show(“请选择要上传的文件!““提示“);
return;
}
if(!File.Exists(filename))
{
MessageBox.Show(“上传的文件不存在!““错误“);
return;
}
FileStream fs = new FileStream(filename FileMode.Open);
CountLen=fs.Length;
long Offset =fs.Length/1000;
byte[] byt = new byte[1024*5];
Len = 0;
while (true)
{
int templen = fs.Read(byt 0 byt.Length);
if (templen == 0)
{
MessageBox.Show(“文件写入完成!“);
break;
}
else
{
Len += templen;
int tempvalue=(int)(Len / Offset);
if (tempvalue < 1000)
{
progressBar1.Value = tempvalue;
}
else
{
progressBar1.Value = 1000;
}
button2.Text =“上传中...“+ ((int)(((float)progressBar1.Value / (float)progressBar1.Maximum) * 100)).ToString() + “%“;
label1.Text = “上传:“ + Convert.ToString(Len / 1024) + “K / “ + Convert.ToString(CountLen/1024)+ “K“;
if (!app.Save(Path.GetFileName(filename) byt))
{
MessageBox.Show(“文件写入失败!“);
}
}
}
fs.Close();
fs.Dispose();
}
private void button1_Click(object sender EventArgs e)
{
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
textBox1.Text = openFileDialog1.FileName;
}
}
Thread th;
private void button2_Click(object sender EventArgs e)
{
th = new System.Threading.Thread(new System.Threading.ThreadStart(DoWork));
th.Start();
}
public void DoWork()
{
button1.Enabled = false;
button2.Enabled = false;
button4.Enabled = false;
textBox2.ReadOnly=true;
app.DeleteFile(Path.GetFileName(textBox1.Text));
Upload(textBox1.Text);
button2.Text = “上传“;
textBox2.ReadOnly=false;
button2.Enabled = true;
button1.Enabled = true;
button4.Enabled = true;
CountLen = 0;
Len = 0;
OldLen = 0;
}
long OldLen = 0;
private void timer1_Tick(object sender EventArgs e)
{
float offs = (float)Len / (float)1024 - (float)OldLen / (float)1024;
label2.Text = “当前速度 “ + offs.ToString() + “ K/s“;
OldLen = Len;
if ((int)offs != 0)
{
label6.Text = Convert.ToString((CountLen - Len) / (long)offs) + “s“;
}
}
private void Form1_Load(object sender EventArgs e)
{
timer1.Start();
button1.Enabled=false;
button2.Enabled=false;
button3.Enabled=false;
button4.Enabled=fals
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 28672 2009-07-29 16:37 Remoteob
文件 36352 2009-07-29 16:37 Remoteob
文件 5632 2005-12-08 14:51 Remoteob
文件 16384 2009-07-29 16:33 Remoteob
文件 13824 2009-07-29 16:33 Remoteob
文件 3777 2009-07-29 16:25 Remoteob
文件 6880 2009-07-29 16:37 Remoteob
文件 13154 2009-07-29 16:36 Remoteob
文件 6627 2009-07-29 16:36 Remoteob
文件 329 2009-07-29 16:28 Remoteob
文件 2312 2009-07-29 16:28 Remoteob
文件 6551 2009-07-29 16:28 Remoteob
文件 823 2009-07-29 16:40 Remoteob
文件 899 2009-07-29 16:36 Remoteob
文件 28672 2009-07-29 16:37 Remoteob
文件 180 2009-07-29 16:36 Remoteob
文件 879 2009-07-29 16:33 Remoteob
文件 36352 2009-07-29 16:37 Remoteob
文件 180 2009-07-29 16:33 Remoteob
文件 2570 2009-07-29 16:33 Remoteob
文件 465 2009-06-25 14:27 Remoteob
文件 1160 2009-06-25 14:27 Remoteob
文件 2868 2009-06-25 14:27 Remoteob
文件 5612 2009-06-25 14:27 Remoteob
文件 1091 2009-06-25 14:27 Remoteob
文件 249 2009-06-25 14:27 Remoteob
文件 16384 2009-07-29 16:33 Remoteob
文件 13824 2009-07-29 16:33 Remoteob
文件 4340 2009-07-16 11:44 Remoteob
文件 16384 2009-07-29 16:33 Remoteob
............此处省略45个文件信息
- 上一篇:C#实现MQTT协议
- 下一篇:C#桌面右下角弹出提示窗
相关资源
- C#桌面右下角弹出提示窗
- C#实现MQTT协议
- c#winform开发仓库管理系统,vs2010,m
- C#中DataSet的用法很详细
- C# 职员管理系统
- C#实现增删改查 学生管理系统
- C# 远程连接RDPdemo
- C#版winform中使用的ToggleButton
- CLR Via C#(第4版) 完整源代码
- 计算机图形学 扫描线种子填充算法
- C# 利用反射动态创建对象
- c#下post multipart/form-data和JSON
- C# OracleHelper
- c#微信企业号推送消息,亲测通过__(
- 自定义的ListView(C#) 可以在任意列
- C# 后台HTML代码拼接工具
- 基于C#的FTP客户端的实现(网络编程课
- c#获取系统和指定进程的CPU和内存占用
- udp打洞源码服务端和客户端C# 实现
- [c#]wince平台下的GPIO接口使用测试程序
- C#中使用ACCESS数据库进行查询WinForm程
- 放大,缩小,图形显示C#+ARCENGINE.rar
- A*算法C#实现,三次B样条优化
- C#实现Excel转txt
- C#转报表程序
- ExtendedWebBrowser 扩展C#的webbrowser
- 基于C#的上位机设计毕业论文
- C#注册码注册机制完整源码.rar
- C#版本opc da 源码最低分分享
- 使用C#读取csv文件的(经典)
评论
共有 条评论