程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> python服務器-C#語言winform用webclient上傳圖片到python寫的服務器上,一直返回404

python服務器-C#語言winform用webclient上傳圖片到python寫的服務器上,一直返回404

編輯:編程綜合問答
C#語言winform用webclient上傳圖片到python寫的服務器上,一直返回404

如題,url地址確認了沒有問題,但是一直都是服務器未響應404,非常奇怪
源碼如下
WebClient wc = new WebClient();
wc.Credentials = CredentialCache.DefaultCredentials;
FileStream fs = new FileStream(resultfile, FileMode.Open, System.IO.FileAccess.Read, FileShare.ReadWrite);
Bitmap bm = new Bitmap(fs);
int streamlength = (int)fs.Length;
byte[] image = new byte[streamlength];
fs.Read(image, 0, streamlength);

                string strRequest = "http://guanjia.51xueba.cn:2014/upload";
                //string strRequest = "http://" + Login.URL + ":2014/upload/";

                wc.UploadFile(strRequest, resultfile);

我後面吧uploadfile換成其他方法,例如Stream postStream = wc.OpenWrite(strRequest,"put");
if (postStream.CanWrite)
{
postStream.Write(image, 0, image.Length);

                    postStream.Close();
                    fs.Dispose();
                }

也還是不行,向大神請教!

最佳回答:


先看服務端的log等,看是否收到發送的請求,如果收到了,那麼web server是否處理正確,是否返回了404

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved