⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 http003.c

📁 简单的http文本网页下载程序。自定义下载的uri后运行
💻 C
字号:
/******* http客户端程序 httpclient.c ************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <unistd.h>
#include <netinet/in.h>
#include <limits.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <ctype.h>

//////////////////////////////httpclient.c 开始///////////////////////////////////////////

/********************************************
功能:搜索字符串右边起的第一个匹配字符
********************************************/
char * Rstrchr(char * s, char x)   {
   int i = strlen(s);
   if(!(*s))   return 0;
   while(s[i-1]) if(strchr(s + (i - 1), x))   return (s + (i - 1));   else i--;
   return 0;
}

/*********************************************************************
*********************************************************************/
int main(int argc, char *argv[])
{
   int sockfd;//创建客户端套接字
   char buffer[1024];
   
   struct sockaddr_in server_addr;//服务器地址 
   struct hostent *host; //服务器主机信息 
   
   int portnumber,nbytes;
   
   char host_addr[256]="192.168.0.138";
   char host_file[1024]="2.htm";
   char local_file[256];
   FILE * fp;
   
   char request[1024];
   int send, totalsend;
   
   int i;
   char * pt;
   portnumber = 80; 
   
   printf("webhost:%s\n", host_addr);
   printf("hostfile:%s\n", host_file);
   printf("portnumber:%d\n\n", portnumber);



   if((host=gethostbyname(host_addr))==NULL)/*取得给定服务器主机的信息*/
   {
     fprintf(stderr,"Gethostname error, %s\n", strerror(errno));
     exit(1);
   }
//

   /* 客户程序开始建立 sockfd描述符 */
   if((sockfd=socket(AF_INET,SOCK_STREAM,0))==-1)/*建立SOCKET连接*/
   {
     fprintf(stderr,"Socket Error:%s\a\n",strerror(errno));
     exit(1);
   }

   /* 客户程序填充服务端的资料 */
   bzero(&server_addr,sizeof(server_addr));
   server_addr.sin_family=AF_INET;
   server_addr.sin_port=htons(portnumber);
   server_addr.sin_addr=*((struct in_addr *)host->h_addr);//服务器端地址 

   /* 客户程序发起连接请求 */
   if(connect(sockfd,(struct sockaddr *)(&server_addr),sizeof(struct sockaddr))==-1)/*连接网站*/
   {
     fprintf(stderr,"Connect Error:%s\a\n",strerror(errno));
     exit(1);
   }

//填写HTTP请求报文内容 
   sprintf(request, "GET /%s HTTP/1.1\r\nAccept: */*\r\nAccept-Language: zh-cn\r\n\
User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)\r\n\
Host: %s:%d\r\nConnection: Close\r\n\r\n", host_file/*请求的网页文件名*/, host_addr/*主机域名*/, portnumber/*端口号*/);
//

   printf("%s", request);/*准备request,将要发送给主机*/

   /*取得真实的文件名*/
   if(host_file && *host_file)   pt = Rstrchr(host_file, '/');
   else pt = 0;

   memset(local_file, 0, sizeof(local_file));
   if(pt && *pt)   {
     if((pt + 1) && *(pt+1))   strcpy(local_file, pt + 1);
     else   memcpy(local_file, host_file, strlen(host_file) - 1);
   }
   else if(host_file && *host_file)   strcpy(local_file, host_file);
   else   strcpy(local_file, "index.html");
   printf("local filename to write:%s\n\n", local_file);//保存在本地文件 local_file中 

   /*发送http请求request*/
   send = 0;totalsend = 0;
   nbytes=strlen(request);
   while(totalsend < nbytes) {
     send = write(sockfd, request + totalsend, nbytes - totalsend);
     if(send==-1)   {printf("send error!%s\n", strerror(errno));exit(0);}
     totalsend+=send;
     printf("%d bytes send OK!\n", totalsend);
   }

   fp = fopen(local_file, "a");
   if(!fp)   {
     printf("create file error! %s\n", strerror(errno));
     return 0;
   }
   printf("\nThe following is the response header:\n");
   i=0;
   /* 连接成功了,接收http响应,response */
   while((nbytes=read(sockfd,buffer,1))==1)
   {
     if(i < 4)   {            //因为只有在HTTP响应结束的时候,才有出现连着4个回车换行的情况。
       if(buffer[0] == '\r' || buffer[0] == '\n')   i++;
       else i = 0;
       printf("%c", buffer[0]);/*把http头信息打印在屏幕上*/
     }
     else   {
       fwrite(buffer, 1, 1, fp);/*将http主体信息写入文件*/
       i++;
       if(i%1024 == 0)   fflush(fp);/*每1K时存盘一次*/
     }
   }
   fclose(fp);
   /* 结束通讯 */
   close(sockfd);
   exit(0);
}
//////////////////////////////httpclient.c 结束///////////////////////////////////////////

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -