免费注册 查看新帖 |

Chinaunix

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

一个简单文件传输的文体,请各位帮忙看看(附代码) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-14 11:58 |只看该作者 |倒序浏览
新学的socket编程,从网上找到一个传输文件的代码,但是编译不成功,请各位看看是什么文体,另外请各位高手帮忙讲解下client接收文件时的思路,有点看不明白……

服务器端:

  1. #include<stdio.h>
  2. #include <stdlib.h>
  3. #include<sys/types.h>
  4. #include<sys/fcntl.h>
  5. #include<sys/socket.h>
  6. #include<netinet/in.h>
  7. #include<netdb.h>
  8. #include<errno.h>
  9. int main(int argc,char **argv)
  10. {
  11.         char c,buf[1024],file[30],host[30];
  12.         int fromlen,source;

  13.         register int k,s,ns;
  14.         struct sockaddr_in sin;
  15.         struct sockaddr_in theri_sin;/*client addr*/
  16.         struct hostent *hp;
  17.         system("clear");
  18.         printf("\n");

  19.         printf("input file name:");
  20.         scanf("%s",file);
  21.         if ((source=open(file,O_RDONLY))<0)
  22.         {
  23.                 perror("源文件打开出错");
  24.                 exit(1);
  25.         }

  26.         printf("\n\n\t\t输入要传输的地质:");
  27.         scanf("%s",host);
  28.        
  29.         printf("\n\t\t在传送文件,稍候");
  30.        
  31.         hp=gethostbyname("host");/*get host addr*/
  32.         if(hp==NULL)
  33.         {
  34.                 perror("返回主机地址信息错");
  35.                 exit(2);
  36.         }
  37.         s=socket(AF_INET,SOCK_STREAM,0);
  38.         if(s<0)
  39.         {
  40.                 perror("获取SOCKET号失败");
  41.                 exit(3);
  42.         }
  43.        
  44.         sin.sin_family=AF_INET;
  45.         sin.sin_port=htons(1500);/*use port 1500*/
  46.         /*sin.sin_addr.s_addr = INADDR_ANY;*/
  47.         bcopy(hp->h_addr,&sin.sin_addr,hp->h_length);
  48.         if(bind(s,(struct sockaddr *)&sin,sizeof(sin))<0)
  49.         {
  50.                 perror("不能将服务器地址捆绑到SOCKET号上");
  51.                 close(s);
  52.                 exit(4);
  53.         }
  54.        
  55.         if(listen(s,5)<0)
  56.         {
  57.                 perror("sever:listen");
  58.                 exit(5);
  59.         }

  60.         while(1)
  61.         {
  62.                 fromlen=sizeof(struct sockaddr_in);

  63.                 if((ns=accept(s,(struct sockaddr *)&sin,&fromlen))<0)
  64.                 {
  65.                         perror("sever:accept");
  66.                         exit(6);
  67.                 }
  68.                
  69.                 printf("received a connection from %s\n", inet_ntoa(their.sin_addr));/*new*/
  70.                
  71.                 lseek(source,0L,0);/*when the server connected by client,the pointer move to head from file*/
  72.                 write(ns,file,sizeof(file)); /*send file name*/
  73.                 while((k=read(source,buf,sizeof(buf)))>0)
  74.                         write(ns,buf,k);
  75.                 printf("\n\n\t\t传输完毕\n");
  76.                 close(ns);
  77.         }

  78.         close(source);
  79.         exit(0);
  80. }
复制代码


客户端:


  1. #include<stdio.h>
  2. #include<sys/types.h>
  3. #include<sys/fcntl.h>
  4. #include<sys/socket.h>
  5. #include<netinet/in.h>
  6. #include<netdb.h>
  7. #include<errno.h>
  8. #include<string.h>
  9. #include <stdlib.h>

  10. main(int argc, char *argv[])
  11. {
  12.         char buf[1024],file[30];
  13.         char *strs="\n\n\t\t正在接收文件";
  14.         int target;
  15.         register int k,s;
  16.         struct sockaddr_in sin;
  17.         struct hostent *hp;
  18.         system("clear");
  19.         printf("\n");
  20.  
  21.         if (argc < 2)
  22.         {
  23.                 fprintf(stderr,"Please enter the server's hostname!\n");
  24.                 exit(1);
  25.         }
  26.     
  27.         hp=gethostbyname(argv[1]);/*get host addr by user's input*/
  28.        
  29.         if(hp==NULL)
  30.         {
  31.                 perror("返回服务器地址信息错!!!");
  32.                 exit(1);
  33.         }
  34.        
  35.         s=socket(AF_INET,SOCK_STREAM,0);
  36.         if(s<0)
  37.         {
  38.                 perror("获取SOCKET号失败!!!");
  39.                 exit(2);
  40.         }

  41.         sin.sin_family=AF_INET;
  42.         sin.sin_port=htons(1500);/*端口号需与服务器程序使用的一致*/
  43.         sin.sin_addr = *((struct in_addr *)host->h_addr);
  44.        
  45.         /*bcopy(hp->h_addr,&sin.sin_addr,hp->h_length);*/
  46.         printf("\n\n\t\t正在与服务器连接…");
  47.         if(connect(s,&sin,sizeof(sin),0)<0)
  48.         {
  49.                 perror("不能与服务器连接!!!");
  50.                 exit(3);
  51.         }

  52.         while((k=read(s,file,sizeof(file)))<=0)/*接收文件名*/
  53.                 if((target=open(file,o_WRONLY|O_CREAT|O_TRUNC,0644))<0)
  54.                 {
  55.                         perror("不能打开目标文件!!");
  56.           exit(4);
  57.          }
  58.           strcat(strs,file);
  59.           strcat(strs,",稍候…");
  60.           write(1,strs,strlen(strs));
  61.           while((k=read(s,buf,sizeof(buf)))>0)
  62.            write(tatget,buf,k);
  63.           printf("\n\n\t\t接收文件成功!!!\n");
  64.           close(s);
  65.           close(target);
  66. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2006-02-14 12:34 |只看该作者
编译报什么错误?

论坛徽章:
0
3 [报告]
发表于 2006-02-14 12:54 |只看该作者
说accept第三个函数的类型不匹配,但是我在网上查了相关介绍,的确是指针地址类型……

论坛徽章:
0
4 [报告]
发表于 2006-02-14 12:58 |只看该作者
我也常遇到这个,但是是警告,不用理会

论坛徽章:
0
5 [报告]
发表于 2006-02-14 13:11 |只看该作者
谢谢楼上的朋友,还有个问题,请能帮忙解释下这段代码的原理吗?有点看不明白……


  1. while((k=read(s,file,sizeof(file)))<=0)/*接收文件名*/
  2.                 if((target=open(file,o_WRONLY|O_CREAT|O_TRUNC,0644))<0)
  3.                 {
  4.                         perror("不能打开目标文件!!");
  5.           exit(4);
  6.          }
  7.           strcat(strs,file);
  8.           strcat(strs,",稍候…");
  9.           write(1,strs,strlen(strs));
  10.           while((k=read(s,buf,sizeof(buf)))>0)
  11.            write(tatget,buf,k);
  12.           printf("\n\n\t\t接收文件成功!!!\n");
  13.           close(s);
  14.           close(target);
复制代码

论坛徽章:
0
6 [报告]
发表于 2006-02-14 13:27 |只看该作者
s:socket描述符
先从s中读取文件名,然后根据读取的文件名创建文件,然后继续循环读取s中没有读完的文件内容,每读一次写入到刚才建立的文件中去,直到读完退出循环。显示“接收文件成功”

论坛徽章:
0
7 [报告]
发表于 2006-02-14 13:55 |只看该作者
谢谢楼上的大哥指点!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP