Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 C 编程并要求我下载了一个网页。我目前正在使用 wget 下载,尽管我希望将文件保存在内存中并分配一个指向它的指针以读取下载的文件。
在当前状态下,我的应用程序 uses popen(/usr/bin/wget http://www.website.com, "w"); 然后分配一个FILE *file = fopen("index.html", "rt");
uses popen(/usr/bin/wget http://www.website.com, "w");
FILE *file = fopen("index.html", "rt");
这可能wget吗?如果不是,它们是替代品吗?
wget
作为一个 API, libcurl将为您提供更好的服务。从简单的界面开始。