如題,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