请问WinForm如何上传文件

请问WinForm如何上传文件,第1张

有很多方法

1)利用Socket(TCP或UDP)

2)利用WebClinet,采用HTTP上传

3)利用FTP协议上传

4)局域网内,利用共享文件夹也可以实现上传

……

具体采用哪种方法,取决于文件服务支持哪种协议

把下面所有出现IP:192.168.1.190的地方全部改成你的地址!!!

这个是纯控制台的,另外我这还有窗体的!你要就联系我!!

服务器端:

using System

using System.Collections.Generic

using System.Linq

using System.Text

using System.Net

using System.Net.Sockets

namespace s1

{

class Program

{

static void Main(string[] args)

{

try

{

// 把IP地址转换为IPAddress的实例

IPAddress ipAd = IPAddress.Parse("192.168.1.192")

// 初始化监听器, 端口为8001

TcpListener myList = new TcpListener(ipAd, 8001)

// 开始监听服务器端口

myList.Start()

// 输出服务器启动信息

Console.WriteLine("在8001端口启动服务...")

Console.WriteLine("本地节点为:" + myList.LocalEndpoint)

Console.WriteLine("等待连接.....")

// 等待处理接入连接请求

// 新建立的连接用套接字s表示

Socket s = myList.AcceptSocket()

Console.WriteLine("连接来自 " + s.RemoteEndPoint)

// 接收客户端信息

byte[] b = new byte[100]

int k = s.Receive(b)

Console.WriteLine("已接收...")

for (int i = 0i <ki++)

{

Console.Write(Convert.ToChar(b[i]))

}

// 处理客户端请求,给客户端回应

ASCIIEncoding asen = new ASCIIEncoding()

s.Send(asen.GetBytes("The string was recieved by the server."))

Console.WriteLine("\n已发送回应信息")

// 善后工作,释放资源

s.Close()

myList.Stop()

}

catch (Exception e)

{

Console.WriteLine("Error..... " + e.StackTrace)

}

}

}

}

客户端:

using System

using System.Collections.Generic

using System.Linq

using System.Text

using System.Net

using System.Net.Sockets

using System.IO

namespace c1

{

class Program

{

static void Main(string[] args)

{

try

{

TcpClient Myclient=new TcpClient()

Console.WriteLine("连接服务器................")

Myclient.Connect("192.168.1.192",8001)

Console.WriteLine("已连接........")

Console.WriteLine("请输入要传送的字符串")

string str=Console.ReadLine()

Stream Mstream=Myclient.GetStream()

ASCIIEncoding Myasc=new ASCIIEncoding()

byte[] ba=Myasc.GetBytes(str)

Console.WriteLine("传送中..............")

Mstream.Write(ba,0,ba.Length)

byte[] bb=new byte[50]

int k=Mstream.Read(bb,0,50)

for (int i=0i<50 i++ ) {

Console.Write(Convert.ToChar(bb[i]))

}

Myclient.Close()

}

catch(Exception e)

{

Console.WriteLine("Something wrong: "+e.Message)

}

Console.ReadKey()

}

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8084289.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存