| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 495 人关注过本帖
标题:求助:为什么接收数据出错?
只看楼主 加入收藏
zqm7251
Rank: 1
等 级:新手上路
帖 子:25
专家分:0
注 册:2008-11-22
结帖率:100%
收藏
 问题点数:0 回复次数:0 
求助:为什么接收数据出错?
求助:为什么接收数据出错?

vc基于对话框:
发送函数:
void CZqmSendDlg::OnBUTTONSend()
{
    // TODO: Add your control notification handler code here
     #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 connection  
    CFile myFile;  
    myFile.Open("E:\\bmp\\te.bmp", CFile::modeRead | CFile::typeBinary);  
    int myFileLength = myFile.GetLength(); // Going to send the correct File 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();
}
接收函数:
void CZqmClinetDlg::OnBUTTONAccept()
{
    // TODO: Add your control notification handler code here
    #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("192.168.1.11", 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\\te.bmp",  
      CFile::modeCreate | CFile::modeWrite | CFile::typeBinary);  
    destFile.Write(data, dataLength); // Write it destFile.Close(); delete data;  
    delete data;  
    sockClient.Close();  
}
能接到,可是文件出错,不能正常读出。敬请手指点。
搜索更多相关主题的帖子: 数据 
2008-11-24 20:14
快速回复:求助:为什么接收数据出错?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.033655 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved