HttpClient实现POST参数提交
Posted 潇洒飘过
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpClient实现POST参数提交相关的知识,希望对你有一定的参考价值。
HttpClient client = new HttpClient(); //使用FormUrlEncodedContent做HttpContent var content = new FormUrlEncodedContent(new Dictionary<string, string>() { { "q", name}, { "from", "zh"}, { "to", "en"} }); var response = await client.PostAsync(url, content); var result = await response.Content.ReadAsAsync<MessageJson2>();
以上是关于HttpClient实现POST参数提交的主要内容,如果未能解决你的问题,请参考以下文章
java模拟登陆时,post提交,对方网页提交时是鼠标onclick触发数据交流的,我该怎么弄?