본문 바로가기
C, C++

[C언어] 웹 정보 가져오기

by hong0 2018. 5. 14.
반응형

웹 정보 가져오기

 

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

int main(void) 
{
	if( access("/tmp/hong.html", F_OK) == 0 )
    	system("rm -rf /tmp/hong.html");
        system("wget -P /tmp -O /tmp/hong.html http://hong00.tistory.com");
        FILE *fp = NULL; fp = fopen("/tmp/hong.html", "r");
        
	if( fp != NULL )
    {
    	char temp[255] = ;
        char *pstr = NULL;
        while( !feof(fp) )
        {
        	pstr = fgets( temp, sizeof(temp), fp );
            printf("%s\n", temp); 
		} 
        fclose(fp);
		fp = NULL; 
	}
	else
    {
    	printf("error\n");
	}
    return 0;
} 

 

반응형

댓글