특정 시나리오에서는 원격 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!