本文介绍了创建HTTP POST请求,并使用C#控制台应用程序接收响应的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要将数据发布到URL(https://somesite.com)的基础上我张贴的参数下载文件中responseStrem。
我怎样才能做到这一点使用C#控制台应用程序?
I need to post data to a URL (https://somesite.com) to download file in responseStrem based on the parameters I posted.How can I do that using a C# console application?
参数:
文件名,
用户名,
密码,
类型
Parameters:filename,userid,password,type
推荐答案
看看在 System.Net.WebClient
类,它可以用来发出请求,处理他们的反应,以及下载文件:
Take a look at the System.Net.WebClient
class, it can be used to issue requests and handle their responses, as well as to download files:
http://www.hanselman.com/blog/HTTPPOSTsAndHTTPGETsWithWebClientAndCAndFakingAPostBack.aspx
http://msdn.microsoft.com/en-us/library/system.net.webclient(VS.90).aspx
这篇关于创建HTTP POST请求,并使用C#控制台应用程序接收响应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!