网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > VC++ > 正文
两台机器间传输文件的函数
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/15
下载{$ArticleTitle}原创论文样式

作者  Vicken Simonian.   
环境:VC6 SP4,NT4 SP5   
这里有两个在两台计算机之间传输文件的函数。在我身边并没有看到什么好的CSOCKET文件传输函数,于是我决定帮你写一个。此代码分为Server端和Client端。   
Server(发送)端:   
void SendFile()   
{   
#define PORT 34000 /// Select any free port you wish   
    
AfxSocketInit(NULL);   
CSocket sockSrvr;   
sockSrvr.Create(PORT); // Creates our server socket   
sockSrvr.Listen(); // Start listening for the client at PORT   
CSocket sockRecv;   
sockSrvr.Accept(sockRecv); // Use another CSocket to accept the conne   
ction   
    
    
CFile myFile;   
myFile.Open("C:\\ANYFILE.EXE", CFile::modeRead | CFile::typeBinary);   
    
    
int myFileLength = myFile.GetLength(); // Going to send the correct F   
ile Size   
    
sockRecv.Send(&myFileLength, 4); // 4 bytes long   
    
byte* data = new byte[myFileLength];   
    
myFile.Read(data, myFileLength);   
    
sockRecv.Send(data, myFileLength); //Send the whole thing now   
    
myFile.Close();   
delete data;   
    
sockRecv.Close();   
}   
    
Client(接收)端:   
void GetFile(){   
    
#define PORT 34000 /// Select any free port you wish   
    
AfxSocketInit(NULL);   
CSocket sockClient;   
sockClient.Create();   
    
// "127.0.0.1" is the IP to your server, same port   
sockClient.Connect("127.0.0.1", PORT);  int dataLength;   
    
sockClient.Receive(&dataLength, 4); //Now we get the File Size first   
    
    
byte* data = new byte[dataLength];   
sockClient.Receive(data, dataLength); //Get the whole thing   
    
CFile destFile("C:\\temp\\ANYFILE.EXE",   
  CFile::modeCreate | CFile::modeWrite | CFile::typeBinary);   
    
destFile.Write(data, dataLength); // Write it destFile.Close(); delet   
e data;   
    
sockClient.Close();   
}   
(有没有看到,既然能先传文件大小,后传文件,那么仿造这个例子,可以把文件分成多段输)如果再做一个线程,那就更完美了。   
在此感谢所有的朋友!Server端必须在Client端之前运行。我相信还有许多可以改进的地方,例如一次传输一个文件,可以将它分成多块(我好像在C版中听某位大虾说过CSocket的Send一次最多只能传64k,不知是对还是错,如不能传则将文件分段)。在任何时候都可以很方便地加入到一个工程中。 

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号