如何使用 C++ 从 Internet 读取文本
How to read text from internet with C++
我尝试使用 C++ 从 Internet 获取文本数据,但找不到任何有用的东西。
喜欢python;
import urllib
data = urllib.urlopen("examplesite.com/data.txt").read()
看看libcurl
. It is a C library, with C++ bindings。
libcurl 网站包括 a collection of examples in C, including one that copies a URL to a block of memory, getinmemory.c
对于 C++,curlcpp
绑定的主页 https://github.com/JosephP91/curlcpp 显示了将 URL 下载到文件的示例。
我尝试使用 C++ 从 Internet 获取文本数据,但找不到任何有用的东西。
喜欢python;
import urllib
data = urllib.urlopen("examplesite.com/data.txt").read()
看看libcurl
. It is a C library, with C++ bindings。
libcurl 网站包括 a collection of examples in C, including one that copies a URL to a block of memory, getinmemory.c
对于 C++,curlcpp
绑定的主页 https://github.com/JosephP91/curlcpp 显示了将 URL 下载到文件的示例。