gpt4 book ai didi

c++ - C++ 中的 Web 客户端

转载 作者:太空宇宙 更新时间:2023-11-04 11:58:13 24 4
gpt4 key购买 nike

我正在编写一个需要能够将 HTML 源代码读入字符串的程序。

我读过有关 C# 的 WebClient,但我需要用 C++ 编写我的程序,但我不确定该怎么做(我以前从未使用过 WebClient)。

谁能给我一个简单的 C++ 示例程序,告诉我如何使用 WebClient 将 HTML 源代码转换为字符串? (或任何更好的方法)

谢谢。

最佳答案

请参阅此页面,C++ 中功能齐全的 Windows HTTP 包装器:

http://www.codeproject.com/Articles/66625/A-Fully-Featured-Windows-HTTP-Wrapper-in-C

该页面的示例代码,看起来像您想要的:

void ProgressTest(void)
{
// Set URL and call back function.
WinHttpClient client(L"http://www.codeproject.com/", ProgressProc);
client.SendHttpRequest();
wstring httpResponseHeader = client.GetResponseHeader();
wstring httpResponseContent = client.GetResponseContent();
}

关于c++ - C++ 中的 Web 客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15186110/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com