首頁 > 軟體

C# form-data上傳圖片流到遠端伺服器的詳細程式碼

2022-08-30 18:04:58

先貼程式碼,後面做一些簡單說明:

public static string sendPostHttpRequest_2(string url, byte[] postBytes, string contentType= "multipart/form-data; boundary=--------------------------71b23e4066ed")
        {
            string delimiter = "--------------------------71b23e4066ed";
            string eol = Environment.NewLine;
            string head = delimiter + eol
        + "Content-Disposition: form-data;piclen=" + postBytes.Length + eol
       + "Content-Type:image/jpeg" + "rnrn";
            string foot = "rn" + delimiter + "--rn";
  
            byte[] h_c = new ASCIIEncoding().GetBytes(head);
            byte[] f_c = new ASCIIEncoding().GetBytes(foot);
  
            WebRequest request = (WebRequest)HttpWebRequest.Create(url);
            request.Method = "POST";
            request.ContentType = contentType;
  
  
            request.ContentLength = postBytes.Length+ h_c.Length+f_c.Length;
            using (Stream outstream = request.GetRequestStream())
            {
                outstream.Write(h_c, 0, h_c.Length);//輸出head
                outstream.Write(postBytes, 0, postBytes.Length);//輸出圖片位元組
                outstream.Write(f_c, 0, f_c.Length);//輸出尾部
            }
            string result = string.Empty;
            using (WebResponse response = request.GetResponse())
            {
                if (response != null)
                {
                    using (Stream stream = response.GetResponseStream())
                    {
                        using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
                        {
                            result = reader.ReadToEnd();
                        }
                    }
  
                }
            }
            return result;
        }

說明:

1)上面的程式碼中我的boundary=xxx是寫死的,因為我對接的介面對方已經寫死只獲取這個分隔符.正常時候這裡是會根據當前時間獲取一個動態的字串當做分隔符

2)輸出的時候, outstream.Write 以前我的思路是先把引數拼接好以後直接一個輸出就好了.結果拼接了好幾個,傳送出去以後對方都不能正常解析.最後在參考了一篇其他文章以後才恍然大悟.我可以分層次的輸出呀.

備註:

下面放了一個很有啟發的知識:

======================================開始

流:二進位制

位元組:無符號整數

字元:Unicode編碼字元

字串:多個Unicode編碼字元

那麼在.net下它們之間如何轉化呢?

一般是遵守以下規則:

流->位元組陣列->字元陣列->字串

下面就來具體談談轉化的語法

流->位元組陣列

MemoryStream ms = new MemoryStream();

byte[] buffer = new byte[ms.Length];

ms.Read(buffer, 0, (int)ms.Length);

位元組陣列->流

byte[] buffer = new byte[10];

MemoryStream ms = new MemoryStream(buffer);

位元組陣列->字元陣列

1.

byte[] buffer = new byte[10];

char[] ch = new ASCIIEncoding().GetChars(buffer);

//或者:char[] ch = Encoding.UTF8.GetChars(buffer)

2.

byte[] buffer = new byte[10];

char[] ch = new char[10];

for(int i=0; i<buffer.Length; i++)

{

ch[i] = Convert.ToChar(buffer[i]);

}

字元陣列->位元組陣列

1.

char[] ch = new char[10];

byte[] buffer = new ASCIIEncoding().GetBytes(ch);

//或者:byte[] buffer = Encoding.UTF8.GetBytes(ch)

2.

char[] ch = new char[10];

byte[] buffer = new byte[10];

for(int i=0; i<ch.Length; i++)

{

buffer[i] = Convert.ToByte(ch[i]);

}

字元陣列->字串

char[] ch = new char[10];

string str = new string(ch);

字串->字元陣列

string str = "abcde";

char[] ch=str .ToCharArray();

位元組陣列->字串

byte[] buffer = new byte[10];

string str = System.Text.Encoding.UTF8.GetString(buffer);

//或者:string str = new ASCIIEncoding().GetString(buffer);

字串->位元組陣列

string str = "abcde";

byte[] buffer=System.Text.Encoding.UTF8.GetBytes(str);

//或者:byte[] buffer= new ASCIIEncoding().GetBytes(str);

以上轉的是 https://www.cnblogs.com/cc1120/p/9139454.html

======================================結束

在我的想法中,把所有的引數先轉換為字元陣列,然後拼接head,圖片位元組轉換的字元陣列,結束字元陣列,然後把字元陣列轉換為位元組進行傳送.猜測應該是可行的,不過我自己在實際應用中是沒有成功,可能是某一步轉換格式的問題.因為專案要求太緊就沒有繼續嘗試.

對了還有下面的一個知識點,有人知道是這樣的嗎?我是沒有研究過不知道是不是.希望有大佬可以回答一下.

到此這篇關於C#form-data上傳圖片流到遠端伺服器的文章就介紹到這了,更多相關C#form-data上傳內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com