首頁 > 後端開發 > C++ > 如何在 ASP.NET 中從 URL 串流並提示下載檔案?

如何在 ASP.NET 中從 URL 串流並提示下載檔案?

Patricia Arquette
發布: 2025-01-06 08:06:41
原創
220 人瀏覽過

How to Stream and Prompt Download of a File from a URL in ASP.NET?

從ASP.NET 中的URL 下載和串流檔案

問題:

如何從ASP.NET中串流文件網址並提示保存在瀏覽器?

背景:

在這種情況下,檔案儲存在虛擬映射目錄中,使其無法透過 Server.MapPath 存取。目標是在傳遞 Web URL 而不是伺服器檔案路徑時串流文件。

解決方案:

要解決此問題,可以利用 HttpWebRequest 來擷取從 URL 取得檔案並將其串流回用戶端。

// Create stream for the file
Stream stream = null;

// Chunk size for reading bytes
int bytesToRead = 10000;

// Buffer for reading bytes
byte[] buffer = new Byte[bytesToRead];

try
{
    // HTTP request to get the file
    HttpWebRequest fileReq = (HttpWebRequest)HttpWebRequest.Create(url);

    // HTTP response for the request
    HttpWebResponse fileResp = (HttpWebResponse)fileReq.GetResponse();

    // Get response stream
    stream = fileResp.GetResponseStream();

    // Client response object
    var resp = HttpContext.Current.Response;

    // Indicate data type
    resp.ContentType = "application/octet-stream";

    // File name
    resp.AddHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");

    // File size
    resp.AddHeader("Content-Length", fileResp.ContentLength.ToString());

    int length;
    do
    {
        // Client connected?
        if (resp.IsClientConnected)
        {
            // Read data into buffer
            length = stream.Read(buffer, 0, bytesToRead);

            // Write data to output stream
            resp.OutputStream.Write(buffer, 0, length);

            // Flush data
            resp.Flush();

            // Clear buffer
            buffer = new Byte[bytesToRead];
        }
        else
        {
            // Cancel if client disconnected
            length = -1;
        }
    } while (length > 0);
}
finally
{
    // Close input stream
    if (stream != null)
        stream.Close();
}
登入後複製

以上是如何在 ASP.NET 中從 URL 串流並提示下載檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板