狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開(kāi)發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

C#在WinForm下使用HttpWebRequest上傳文件并顯示進(jìn)度

admin
2017年3月21日 23:39 本文熱度 6010
/// <summary>
/// 將本地文件上傳到指定的服務(wù)器(HttpWebRequest方法)
/// </summary>
/// <param name="address">文件上傳到的服務(wù)器</param>
/// <param name="fileNamePath">要上傳的本地文件(全路徑)</param>
/// <param name="saveName">文件上傳后的名稱</param>
/// <param name="progressBar">上傳進(jìn)度條</param>
/// <returns>成功返回1,失敗返回0</returns>
private int Upload_Request(string address, string fileNamePath, string saveName, ProgressBar progressBar)
{
    int returnValue = 0;
    // 要上傳的文件
    FileStream fs = new FileStream(fileNamePath, FileMode.Open, FileAccess.Read);
    BinaryReader r = new BinaryReader(fs);
    //時(shí)間戳
    string strBoundary = "----------" + DateTime.Now.Ticks.ToString("x");
    byte[] boundaryBytes = Encoding.ASCII.GetBytes("\r\n--" + strBoundary + "\r\n");
    //請(qǐng)求頭部信息
    StringBuilder sb = new StringBuilder();
    sb.Append("--");
    sb.Append(strBoundary);
    sb.Append("\r\n");
    sb.Append("Content-Disposition: form-data; name="");
    sb.Append("file");
    sb.Append(""; filename="");
    sb.Append(saveName);
    sb.Append(""");
    sb.Append("\r\n");
    sb.Append("Content-Type: ");
    sb.Append("application/octet-stream");
    sb.Append("\r\n");
    sb.Append("\r\n");
    string strPostHeader = sb.ToString();
    byte[] postHeaderBytes = Encoding.UTF8.GetBytes(strPostHeader);
    // 根據(jù)uri創(chuàng)建HttpWebRequest對(duì)象
    HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(new Uri(address));
    httpReq.Method = "POST";
    //對(duì)發(fā)送的數(shù)據(jù)不使用緩存
    httpReq.AllowWriteStreamBuffering = false;
    //設(shè)置獲得響應(yīng)的超時(shí)時(shí)間(默認(rèn)300秒)
    httpReq.Timeout = 300000;
    httpReq.ContentType = "multipart/form-data; boundary=" + strBoundary;
    long length = fs.Length + postHeaderBytes.Length + boundaryBytes.Length;
    long fileLength = fs.Length;
    httpReq.ContentLength = length;
    try
    {
        progressBar.Maximum = int.MaxValue;
        progressBar.Minimum = 0;
        progressBar.Value = 0;
        //每次上傳4k
        int bufferLength = 4096;
        byte[] buffer = new byte[bufferLength];
        //已上傳的字節(jié)數(shù)
        long offset = 0;
        //開(kāi)始上傳時(shí)間
        DateTime startTime = DateTime.Now;
        int size = r.Read(buffer, 0, bufferLength);
        Stream postStream = httpReq.GetRequestStream();
        //發(fā)送請(qǐng)求頭部消息
        postStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);
        while (size > 0)
        {
            postStream.Write(buffer, 0, size);
            offset += size;
            progressBar.Value = (int)(offset * (int.MaxValue / length));
            TimeSpan span = DateTime.Now - startTime;
            double second = span.TotalSeconds;
            lblTime.Text = "已用時(shí):" + second.ToString("F2") + "秒";
            if (second > 0.001)
            {
                lblSpeed.Text = " 平均速度:" + (offset / 1024 / second).ToString("0.00") + "KB/秒";
            }
            else
            {
                lblSpeed.Text = " 正在連接…";
            }
            lblState.Text = "已上傳:" + (offset * 100.0 / length).ToString("F2") + "%";
            lblSize.Text = (offset / 1048576.0).ToString("F2") + "M/" + (fileLength / 1048576.0).ToString("F2") + "M";
            Application.DoEvents();
            size = r.Read(buffer, 0, bufferLength);
        }
        //添加尾部的時(shí)間戳
        postStream.Write(boundaryBytes, 0, boundaryBytes.Length);
        postStream.Close();
        //獲取服務(wù)器端的響應(yīng)
        WebResponse webRespon = httpReq.GetResponse();
        Stream s = webRespon.GetResponseStream();
        StreamReader sr = new StreamReader(s);
        //讀取服務(wù)器端返回的消息
        String sReturnString = sr.ReadLine();
        s.Close();
        sr.Close();
        if (sReturnString == "Success")
        {
            returnValue = 1;
        }
        else if (sReturnString == "Error")
        {
            returnValue = 0;
        }
    }
    catch
    {
        returnValue = 0;
    }
    finally
    {
        fs.Close();
        r.Close();
    }
    return returnValue;
}
參數(shù)說(shuō)明如下:
address:接收文件的URL地址,如:http://localhost/UploadFile/Save.aspx
fileNamePath:要上傳的本地文件,如:D:\test.rar
saveName:文件上傳到服務(wù)器后的名稱,如:200901011234.rar
progressBar:顯示文件上傳進(jìn)度的進(jìn)度條。
接收文件的WebForm添加一個(gè)Save.aspx頁(yè)面,Load方法如下:
protected void Page_Load(object sender, EventArgs e)
{
    if (Request.Files.Count > 0)
    {
        try
        {
            HttpPostedFile file = Request.Files[0];
            string filePath = this.MapPath("UploadDocument") + "\" + file.FileName;
            file.SaveAs(filePath);
            Response.Write("Success\r\n");
        }
        catch
        {
            Response.Write("Error\r\n");
        }
    }
}
同時(shí)需要配置WebConfig文件的httpRuntime 如下:
<httpRuntime maxRequestLength="102400" executionTimeout="300"/>
不能的話最大只能上傳4M了。要是想上傳更大的文件,maxRequestLength,executionTimeout設(shè)置大些,同時(shí)WinForm下的代碼行
//設(shè)置獲得響應(yīng)的超時(shí)時(shí)間(300秒)
httpReq.Timeout = 300000;

也要修改,另外別忘了看看IIS的連接超時(shí)是否設(shè)置為足夠大。


該文章在 2017/3/21 23:39:11 編輯過(guò)
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開(kāi)發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉(cāng)儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉(cāng)儲(chǔ)管理,倉(cāng)庫(kù)管理,保質(zhì)期管理,貨位管理,庫(kù)位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved