首页 > 代码库 > WebClient 数据传输
WebClient 数据传输
数据提交 post ,get
public string WebClientPost(string PostData, string PostUrl, string Type) { string postString = PostData; byte[] postData = http://www.mamicode.com/Encoding.UTF8.GetBytes(postString);//编码,尤其是汉字,事先要看下抓取网页的编码方式 string url = PostUrl;//地址 WebClient webClient = new WebClient(); byte[] responseData = http://www.mamicode.com/null; if (Type == "post") { webClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded");//采取POST方式必须加的header,如果改为GET方式的话就去掉这句话即可 responseData = http://www.mamicode.com/webClient.UploadData(url, "POST", postData);//得到返回字符流 } else { responseData = webClient.UploadData(url, "GET", postData);//得到返回字符流 } string srcString = Encoding.UTF8.GetString(responseData);//解码 return srcString; }
文件解析
1转为JObject
string _Result = PostData(Appid, AppKey, imgSrc, "", "post"); JObject jsonData = JObject.Parse(_Result); JArray jsonFace = jsonData.GetValue("face") as JArray; if (jsonFace == null) { msg = "err" + "," + "格式不对"; } else { int height = 0; int width = 0; int center_x = 0; int center_y = 0; string sex = ""; if (jsonFace != null && jsonFace.Count > 0) { height = int.Parse(jsonFace[0]["position"]["height"].ToString()); width = int.Parse(jsonFace[0]["position"]["width"].ToString()); center_x = int.Parse(jsonFace[0]["position"]["center"]["x"].ToString()); center_y = int.Parse(jsonFace[0]["position"]["center"]["y"].ToString()); sex = jsonFace[0]["attribute"]["gender"].ToString(); }
}
2 Dictionary
Dictionary<string, object> objJson = JsonConvert.DeserializeObject<Dictionary<string, object>>(request); string state = objJson["state"].ToString();
数据下载
string imgSrc = http://www.mamicode.com/context.Request.Form["ImgUrl"].ToString(); //服务器连接 string FileDir = "/PublicResource/"; string AppName = System.Configuration.ConfigurationManager.AppSettings["AppName"]; if (!string.IsNullOrEmpty(AppName)) { FileDir = "/PublicResource/" + AppName + "/"; } Guid NewId = Guid.NewGuid(); WebClient wc = new WebClient(); string WXPath = context.Server.MapPath(FileDir + NewId.ToString() + ".jpg"); wc.DownloadFile(imgSrc, WXPath);
WebClient 数据传输
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。