• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

两台机器间传输文件的函数

发布: 2007-7-14 21:11 | 作者: 佚名    | 来源: 网络转载     | 查看: 26次 | 进入软件测试论坛讨论

领测软件测试网 作者  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,不知是对还是错,如不能传则将文件分段)。在任何时候都可以很方便地加入到一个工程中。 

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网