有没有使用 WinInet c++ 进行 http 上传的好例子 图书馆
我无法让我的代码工作:/
I cannot get my code to work :/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我无法让我的代码工作:/
I cannot get my code to work :/
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
最终我在 web 上找到了一些工作示例
Eventually I found some working example on the web
这是 Microsoft 的一个简单示例。
该示例来自此处。
Here's a quick example from Microsoft.
The example comes from here.
MSDN 有一个很好的示例 SAMPLE:Using HttpSendRequestEx对于大型 POST 请求
它还包含一个供HTTP服务器接收数据的ASP文件,请在msdn页面下载自解压文件“Hsrex.exe”。
MSDN has a good example SAMPLE: Using HttpSendRequestEx for Large POST Requests
it also contain a ASP file for HTTP server to receive data, please download the self-extract file 'Hsrex.exe' in msdn page.
我找不到如何使用 wininet 和 c/c++ 的简单而完整的代码,因此我从一点点开始为将来访问但无法弄清楚的人编写了一个简单而简单的 c 代码。该代码可以上传任何文件(二进制,文本,mp3 ....)到您指定的主机名,对于后端我使用php(下面的代码)。
这是我使用的 php 代码
I couldn't find an easy and complete code of how to use wininet with c/c++ so from bits and pieces i wrote an easy and simple c code for someone that visits in future and cant figure out.The code can upload any file(binary,text,mp3....) to hostname you specify,for backend i use php(below code).
and here is the php code i use along with it