> 백엔드 개발 > 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에서 파일을 스트리밍하는 방법 URL을 저장하라는 메시지가 표시됩니다. 브라우저?

배경:

이 시나리오에서는 파일이 가상으로 매핑된 디렉터리에 저장되므로 Server.MapPath를 통해 액세스할 수 없습니다. 목표는 서버 파일 경로 대신 웹 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으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿