免费注册 查看新帖 |

Chinaunix

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

[C] linux下用c语言如何实现下载 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-03-30 11:32 |只看该作者 |倒序浏览
小弟最近在做一个下载的软件是用gtk+做的图形见面,现在要做下载的部分了我以前没做过,不知道如何实现下载的功能请大家指点一下。

论坛徽章:
0
2 [报告]
发表于 2007-03-30 11:39 |只看该作者
socket

剩下的按照协议实现

论坛徽章:
0
3 [报告]
发表于 2007-03-30 16:08 |只看该作者
原帖由 zhaojing5352 于 2007-3-30 11:32 发表
小弟最近在做一个下载的软件是用gtk+做的图形见面,现在要做下载的部分了我以前没做过,不知道如何实现下载的功能请大家指点一下。


你准备使用什么网络?函数库的名字?

.

论坛徽章:
0
4 [报告]
发表于 2007-03-30 17:17 |只看该作者
这段代码可能对你有用:

  1. /*
  2.    Wget V. 0.7 Download File Form Url
  3.    
  4.    by wzt    <[email]wzt@xsec.org[/email]>
  5.    
  6. */

  7. #include <stdio.h>
  8. #include <string.h>
  9. #include <stdlib.h>
  10. #include <sys/socket.h>
  11. #include <sys/types.h>
  12. #include <sys/wait.h>
  13. #include <netinet/in.h>
  14. #include <netdb.h>
  15. #include <time.h>

  16. #define    MAXLINE    65535
  17. #define SENDDATA    1000

  18. #define PORT        80

  19. struct hostent *host;

  20. char *data_m="Accept: */*\r\n"
  21.         "Accept-Language: zh-cn\r\n"
  22.         "UA-CPU: x86\r\n"
  23.         "Accept-Encoding: gzip, deflate\r\n"
  24.         "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; TencentTraveler ; .NET CLR 1.1.4322)\r\n";
  25.       
  26.       
  27. char *data_e="Connection: Keep-Alive\r\n\r\n";

  28. typedef struct DWONLOAD_FILE{
  29.    char hosts[100];
  30.    char ports[200];
  31.    char file[200];
  32.    int port;
  33. }DOWN;

  34. void usage(char *pro);
  35. void ver();
  36. DOWN abstract_host(char *src);
  37. void download_file(char *url_t,char *local_file);
  38. int connect_server(int port);

  39. void usage(char *pro)
  40. {
  41.    ver();
  42.    printf("usage : %s <remote file> <local file>\n",pro);
  43.    printf("exp: %s [url]http://tthacker.sitesled.com/backdoor/bindtty.c[/url] bindtty.c\n",pro);
  44.    exit(0);
  45. }

  46. void ver()
  47. {
  48.    printf("\nWget Ver 0.6 by W.Z.T, [email]wzt@xsec.org[/email] 2006/10/27\n");
  49. }

  50. int connect_server(int port)
  51. {
  52.    struct sockaddr_in remote;
  53.    int sock_id;
  54.    
  55.    if((sock_id=socket(AF_INET,SOCK_STREAM,0))<0){
  56.        perror("sock_id");
  57.        exit(0);
  58.    }
  59.    
  60.    remote.sin_family=AF_INET;
  61.    remote.sin_port=htons(port);
  62.    remote.sin_addr=*((struct in_addr *)host->h_addr);
  63.    
  64.    if(connect(sock_id,(struct sockaddr *)&remote,sizeof(struct sockaddr))<0){
  65.        perror("connect");
  66.        return -1;
  67.    }
  68.    
  69.    printf("\n[+] Connect :%s:%d OK!\r\n",inet_ntoa(remote.sin_addr),ntohs(remote.sin_port));
  70.    
  71.    return sock_id;
  72. }

  73. void download_file(char *url_t,char *local_file)
  74. {
  75.    DOWN file_get;
  76.    FILE *fp;
  77.    time_t t_s,t_e;
  78.    char download_url[SENDDATA];
  79.    char recv_data[MAXLINE];
  80.    int sock_fd;
  81.    long get_file_len=0;
  82.    int r_len;
  83.    int http_check;
  84.    char *real_data_pos;
  85.       
  86.    ver();
  87.    file_get=abstract_host(url_t);

  88.    printf("\n[+] Host :%s\n",file_get.hosts);
  89.    printf("[+] Port :%d\n",file_get.port);
  90.    printf("[+] File :%s\n",file_get.file);
  91.    
  92.    
  93.    if((fp=fopen(local_file,"w+"))==NULL){
  94.        printf("\n[-] Create Local File %s Failed.\n",local_file);
  95.        exit(1);
  96.    }
  97.    
  98.    if((host=gethostbyname(file_get.hosts))==NULL){
  99.        herror("gethostbyname");
  100.        exit(0);
  101.    }

  102. // 提交url
  103.    sprintf(download_url,"GET %s HTTP/1.1\r\n%sHost: %s\r\n%s",file_get.file,data_m,file_get.hosts,data_e);
  104.    
  105. //    printf("%s",download_url);
  106.    
  107.    sock_fd=connect_server(file_get.port);
  108.    
  109.    if(sock_fd==-1){
  110.        printf("connect error.\n");
  111.        exit(1);
  112.    }

  113.    time(&t_s);
  114.    printf("\n[+] Starting Download at %s",ctime(&t_s)+4);
  115.       
  116. // 接受并处理第-批数据
  117.    
  118.    write(sock_fd,download_url,strlen(download_url));
  119.    r_len=read(sock_fd,recv_data,MAXLINE);
  120.    
  121. //    printf("%s",recv_data);
  122.    http_check=atoi(recv_data+9);
  123.    
  124. //    printf("%d\n",http_check);
  125.    if(http_check == 200 || http_check == 206){
  126. //        printf("\n[+] Download Begin ...\n");
  127.    }
  128.    else{
  129.        printf("\n[-] Bad request.\n");
  130.        exit(1);
  131.    }

  132. // 获得文件大小
  133.    
  134.    get_file_len=atoi(strstr(recv_data,"Content-Length: ")+16);
  135.    printf("\n[+] File Size: %ld\n",get_file_len);

  136. // 寻找真正的文件开始位置
  137.    
  138.    real_data_pos=strstr(recv_data,"\r\n\r\n")+4;
  139.    fputs(real_data_pos,fp);

  140. // 循环读取数据
  141.    
  142.    memset(recv_data,0,MAXLINE);
  143.    while((r_len=read(sock_fd,recv_data,MAXLINE))>0){   
  144.        fputs(recv_data,fp);
  145. //        printf("%d\n",r_len);
  146.        memset(recv_data,0,MAXLINE);
  147.    }
  148.    
  149.    fclose(fp);
  150.       
  151.    time(&t_e);
  152.    printf("\n[+] Download File OK at %s",ctime(&t_e)+4);   
  153.    
  154. }

  155. DOWN abstract_host(char src[])
  156. {
  157.    DOWN file_download;
  158.    char *http="http://";
  159.    int port;
  160.    int port_flag=0;
  161.    int i,j=0,k,l=0,h;

  162.    i=strlen(http);
  163.    for(;i<strlen(src);i++){
  164.        if(src[i]==':'){
  165.            port_flag=1;
  166.            h=i-1;
  167.            i++;
  168.            for(;src[i]!='/';i++){     /* 提取ports */
  169.                file_download.ports[j++]=src[i];
  170.            }
  171.            file_download.ports[j]='\0';
  172.        }
  173.        if(src[i]=='/'){
  174.            k=i-1;
  175.            break;
  176.        }
  177.    }
  178.    
  179. /////////////////////////////////////////////////////////////////////   

  180.    for(;i<strlen(src);i++){     /* 提取file */
  181.        file_download.file[l++]=src[i];
  182.    }
  183.    file_download.file[l]='\0';

  184. ////////////////////////////////////////////////////////////////////

  185.    i=strlen(http);   /* 提取主机名 */
  186.    j=0;
  187.    k=((port_flag==1)?h:k);
  188.    
  189.    for(;i<=k;i++)
  190.        file_download.hosts[j++]=src[i];
  191.    file_download.hosts[j]='\0';
  192.    
  193. ////////////////////////////////////////////////////////////////////

  194.    if(port_flag==0)   /* 提取port */
  195.        file_download.port=PORT;   
  196.    else
  197.        file_download.port=atoi(file_download.ports);
  198.    
  199. ////////////////////////////////////////////////////////////////////   
  200.    
  201.    return file_download;
  202. }

  203. int main(int argc,char **argv)
  204. {
  205.    if(argc<3){
  206.        usage(argv[0]);
  207.    }
  208.    
  209.    download_file(argv[1],argv[2]);
  210.       
  211.    return 0;
  212. }
复制代码

论坛徽章:
0
5 [报告]
发表于 2007-03-30 17:44 |只看该作者
原帖由 zhaojing5352 于 2007-3-30 11:32 发表
小弟最近在做一个下载的软件是用gtk+做的图形见面,现在要做下载的部分了我以前没做过,不知道如何实现下载的功能请大家指点一下。

?下载和gtk有什么关联?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP