> 백엔드 개발 > C++ > ASP.NET의 원격 URL에서 파일을 다운로드하고 스트리밍하는 방법은 무엇입니까?

ASP.NET의 원격 URL에서 파일을 다운로드하고 스트리밍하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2025-01-06 08:26:43
원래의
768명이 탐색했습니다.

How to Download and Stream Files from a Remote URL in ASP.NET?

URL에서 파일 다운로드/스트리밍 - asp.net

특정 시나리오에서는 원격 URL에서 파일을 스트리밍하거나 다운로드하고 " 다른 이름으로 저장' 프롬프트가 브라우저에 표시됩니다. 그러나 파일이 가상으로 매핑된 디렉터리에 있는 경우 Server.MapPath를 사용하여 실제 위치에 액세스하는 것이 어려울 수 있습니다.

대신 HttpWebRequest의 강력한 기능을 활용하여 이 기능을 구현할 수 있습니다. 다음은 웹 URL을 전달할 수 있는 예입니다.

using System.IO;
using System.Net;

namespace FileDownloader
{
    public static class FileDownloader
    {
        public static void DownloadFile(string url, string fileName)
        {
            // Create a stream for the file
            Stream stream = null;

            // Configure streaming chunk size
            int bytesToRead = 10000;

            // Buffer to read bytes in specified chunk size
            byte[] buffer = new Byte[bytesToRead];

            // Initialize response
            HttpWebResponse fileResp = null;

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

                // Get a response for this request
                fileResp = (HttpWebResponse)fileReq.GetResponse();

                // Get the Stream returned from the response
                stream = fileResp.GetResponseStream();

                // Prepare the response to the client
                HttpResponse resp = HttpContext.Current.Response;

                // Set response type and add headers
                resp.ContentType = MediaTypeNames.Application.Octet;
                resp.AddHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
                resp.AddHeader("Content-Length", fileResp.ContentLength.ToString());

                int length;
                do
                {
                    // Verify client connection
                    if (resp.IsClientConnected)
                    {
                        // Read data into the buffer
                        length = stream.Read(buffer, 0, bytesToRead);

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

                        // Flush the data
                        resp.Flush();

                        // Clear the buffer
                        buffer = new Byte[bytesToRead];
                    }
                    else
                    {
                        // Cancel download if client disconnects
                        length = -1;
                    }
                } while (length > 0); // Repeat until no data remains
            }
            finally
            {
                // Close the input stream
                if (stream != null)
                {
                    stream.Close();
                }

                // Dispose the response
                if (fileResp != null)
                {
                    fileResp.Close();
                }
            }
        }
    }
}
로그인 후 복사

이 접근 방식을 사용하면 원격 URL에서 파일을 스트리밍하고 사용자가 동적으로 생성된 파일 이름을 사용하여 로컬에 저장할 수 있습니다.

위 내용은 ASP.NET의 원격 URL에서 파일을 다운로드하고 스트리밍하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿