c# winform 上传图片到服务器
时间:2019-03-09 15:52:31
收藏:0
阅读:318
WebClient myWebClient = new WebClient(); byte[] responseArray = myWebClient.UploadFile("服务器地址", "POST", "图片地址"); string ass= System.Text.Encoding.UTF8.GetString(responseArray);
原文:https://www.cnblogs.com/woaijingjing/p/10500730.html
评论(0)