How to fetch HTML in C/C++ [closed]

2019-02-21 06:16发布

How to fetch HTML in C or C++? with Sockets. Can you give me a Example code pls?

NOTE - I originally closed this, but reopened. To the poster - Please see:

https://stackoverflow.com/questions/400688/fetch-web-page-in-c

and

Programmatically reading a web page

2条回答
你好瞎i
2楼-- · 2019-02-21 06:37

You're not mentioning any platform, so I give you an answer for Win32.

One simple way to download anything from the Internet is the URLDownloadToFile with the IBindStatusCallback parameter set to NULL. To make the function more useful, the callback interface needs to be implemented.

查看更多
Ridiculous、
3楼-- · 2019-02-21 06:46

You may use libcURL. Refer to this post: Programmatically reading a web page

查看更多
登录 后发表回答