本文介绍了程石的WinHttpClient无法得到回应的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我无法得到我的webrequest的响应,这是我的代码 I can't get the reponse of my webrequest, here's my code // Set URL.WinHttpClient client(L"http://www.codeproject.com/");// Send HTTP request, a GET request by default.client.SendHttpRequest();// The response header.wstring httpResponseHeader = client.GetResponseHeader();// The response content.wstring httpResponseContent = client.GetResponseContent();printf((char*)httpResponseContent.c_str()); 任何人都有修复?Anyone got a fix?推荐答案 这篇关于程石的WinHttpClient无法得到回应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-19 02:21