免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2537 | 回复: 2
打印 上一主题 下一主题

如何做利用http协议下载网上mp3的程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-09 11:46 |只看该作者 |倒序浏览
我从网上找了一个下载的源程序,下载一般网页可以,但是如果下载mp3就不行了,出现段错误,可能是mp3比较大,该程序采取的存储方法不对,清各位指点一下,怎么改一下存储方法。如果可以提供实现下载大文件功能的源程序是最好不过了,先谢谢大家了。源代码如下:

  #include "CSocket.h"
#include <fstream>

#define  DEBUG 0

int main()
{
        string word;
        string filename;
        string hostname;
        int pos1 = 0;
        int pos2 = 0;

        cout << "enter the host name" << endl;
        cin >> word;

        //bulid the query for http
        string quest = "GET ";
        quest += word;
        quest += " HTTP/1.0\r\n";
        quest += "User-agent:Mozilla/4.0\r\n";
quest += "Accept-language:zh-cn\r\n\r\n";

        //get the hostname and filename from the word
        string str_http = "http://";
        pos1 = word.find_first_of (str_http, 0);
        pos2 = word.find_first_of ("/", pos1+7);
        hostname = word.substr( pos1+7, pos2-pos1-7 );
        pos1 = word.find_last_of( "/", word.size() );
        filename = word.substr( pos1+1, word.size()-pos1-1 );

        cout << "filename: " << filename << endl;
        cout << "hostname: " << hostname << endl;

        //use the hostname and port 80 to connect
        Sock_instance s_client( hostname, 80, CLIENT_TYPE );
        if( !s_client.Connect() )
        {
                cout << "connect error" << endl;
                return -1;
        }
//send the http query to the host
        cout << "connect is ok!" << endl;
        if( !s_client.Send(quest) )
        {
                cout << "send is error!" << endl;
                return -1;
        }

        //recieve all the file from the hsot
        while( s_client.Receive() > 0 )
        {
            printf("receive");
        }
        printf("receive end");

        //write the binary data which is recieved on the file
//      FILE *fp = fopen( filename.c_str(), "wb" );
        FILE *fp = fopen( "abc.mp3", "wb" );
        fwrite( s_client.data(), sizeof( unsigned char ), s_client.datalen(), fp );
        fclose( fp );
        return 0;

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2008-08-09 14:55 |只看该作者
出现段错误你先用 debugger 跟一下嘛

论坛徽章:
0
3 [报告]
发表于 2008-08-21 19:14 |只看该作者
一般是收完一包,就把这包的数据写到文件中,不会全部收完才写入。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP