当前位置: 技术问答>linux和unix
linux环境下,c语言怎么读取WEB服务器的80端口上页面的内容?
来源: 互联网 发布时间:2015-12-07
本文导语: 能不能实现呢 应该怎么做,谢谢,现在需要去读取某网站上的html代码 如:servaddr="http://www.xxx.com" servport=80 我写了个简单的测试代码: #include #include #include #include #include #define MAXLINE 1024 int main(){ int...
能不能实现呢
应该怎么做,谢谢,现在需要去读取某网站上的html代码
如:servaddr="http://www.xxx.com"
servport=80
我写了个简单的测试代码:
#include
#include
#include
#include
#include
#define MAXLINE 1024
int main(){
int sockfd,n;
char recvline[MAXLINE+1];
struct sockaddr_in servaddr;
if((sockfd=socket(AF_INET,SOCK_STREAM,0))
应该怎么做,谢谢,现在需要去读取某网站上的html代码
如:servaddr="http://www.xxx.com"
servport=80
我写了个简单的测试代码:
#include
#include
#include
#include
#include
#define MAXLINE 1024
int main(){
int sockfd,n;
char recvline[MAXLINE+1];
struct sockaddr_in servaddr;
if((sockfd=socket(AF_INET,SOCK_STREAM,0))