C++ Windows HTTP
我正在寻找有关连接到域和下载索引文件的基本教程。任何人都可以给我链接一个很好的例子或任何东西。
I'm looking for a basic tutorial for connecting to a domain and downloading the index file . Anyone that can link me a good example or anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
查看 libCURL 它会为你做这件事。
Check out libCURL it will do this for you.
最简单的解决方案是使用 URLDownloadToFile。
但是,您可以一起使用所有这些 API:
我很确定还有另一个简单的 API,但我现在不记得了。
The simplest solution is using URLDownloadToFile.
However, you can use all these APIs together:
I'm pretty sure there's still another simple API for that, but I don't remember right now.
Ultimate TCP/IP 中包含一个免费的 HTTP 库。
There is a free HTTP library included with Ultimate TCP/IP.
我使用 Poco 来实现这一点。另外一个好处是它还具有可移植性(也适用于 Linux 和其他操作系统)。
I use Poco for that. as a side benefir it's also portable (works on Linux and other OSs as well).
一般来说,我会推荐一些跨平台的东西,比如 cURL、POCO 或 Qt。不过,这是一个 Windows 示例!:
Generally I'd recommend something cross-platform like cURL, POCO, or Qt. However, here is a Windows example!: