Best way to save a Stream to a file in asp.net 3.5? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:15:01Zhttp://stackoverflow.com/feeds/question/574396http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/574396/best-way-to-save-a-stream-to-a-file-in-asp-net-3-52Best way to save a Stream to a file in asp.net 3.5?Rob Packwood2009-02-22T05:18:04Z2009-02-22T15:24:05Z
<p>I have a Stream object that is populated with the contents of an XSD file I have as an embedded resource on a project I am working on like so:</p>
<pre><code>using ( Stream xsdStream = assembly.GetManifestResourceStream( xsdFile ) )
{
// Save the contents of the xsdStream here...
}
</code></pre>
<p>Within this using block I would like to prompt the user with a Save File dialog on the web where they can choose to save off this XSD file contained within the stream. </p>
<p>What is the best way to accomplish this? I am completely lost and can't seem to Google the right terms to get a relevant answer. </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/574396/best-way-to-save-a-stream-to-a-file-in-asp-net-3-5/574402#5744020Answer by tsilb for Best way to save a Stream to a file in asp.net 3.5?tsilb2009-02-22T05:28:56Z2009-02-22T05:28:56Z<p>If you aren't using AJAX, you can use Response.WriteFile. Else I'd use a MemoryStream. That's how I did it <a href="http://zi255.com/?Req=Post&PID=187" rel="nofollow">here</a>. Sorry it's in VB.NET, I haven't transcoded it. Note this also lets you download a file THROUGH the webserver, i.e. if your file is on an app server w/o public access.</p>
<pre><code>Imports System.Data
Imports System.Data.SqlClient
Imports System.Data.Sql
Imports System.Net
Imports System.IO
Partial Class DownloadFile
Inherits System.Web.UI.Page
Protected Sub page_load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
Dim url As String = Request.QueryString("DownloadUrl")
If url Is Nothing Or url.Length = 0 Then Exit Sub
'Initialize the input stream
Dim req As HttpWebRequest = WebRequest.Create(url)
Dim resp As HttpWebResponse = req.GetResponse()
Dim bufferSize As Integer = 1
'Initialize the output stream
Response.Clear()
Response.AppendHeader("Content-Disposition:", "attachment; filename=download.zip")
Response.AppendHeader("Content-Length", resp.ContentLength.ToString)
Response.ContentType = "application/download"
'Populate the output stream
Dim ByteBuffer As Byte() = New Byte(bufferSize) {}
Dim ms As MemoryStream = New MemoryStream(ByteBuffer, True)
Dim rs As Stream = req.GetResponse.GetResponseStream()
Dim bytes() As Byte = New Byte(bufferSize) {}
While rs.Read(ByteBuffer, 0, ByteBuffer.Length) > 0
Response.BinaryWrite(ms.ToArray())
Response.Flush()
End While
'Cleanup
Response.End()
ms.Close()
ms.Dispose()
rs.Dispose()
ByteBuffer = Nothing
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/574396/best-way-to-save-a-stream-to-a-file-in-asp-net-3-5/574404#5744040Answer by JohannesH for Best way to save a Stream to a file in asp.net 3.5?JohannesH2009-02-22T05:29:36Z2009-02-22T05:38:36Z<p>It sounds to me that you should take a look at the WebResource.axd handler.</p>
<p>Microsoft have an excellent <a href="http://support.microsoft.com/kb/910442" rel="nofollow" title="Working with Web Resources in ASP.NET 2.0">article</a> on the subject.</p>
<p><strong>Edit:</strong></p>
<p>It seems that tsilb beat my answer by a minute or so. However, the AssemblyResourceLoader (aka. WebResource.axd) is already implemented to do this for you and to do it properly, and don't forget that this puppy supports output caching. So go ahead use that instead and spare yourself the trouble. ;)</p>
http://stackoverflow.com/questions/574396/best-way-to-save-a-stream-to-a-file-in-asp-net-3-5/574405#5744051Answer by SmokingRope for Best way to save a Stream to a file in asp.net 3.5?SmokingRope2009-02-22T05:30:14Z2009-02-22T05:30:14Z<p>You will want to set the content-disposition:</p>
<pre><code>Response.AddHeader "Content-Disposition","attachment; filename=" & xsdFile
</code></pre>
<p>You will also want to set the Content-Type to text/plain and Content-Length to the size of the file. Then you write the contents of the file.</p>
http://stackoverflow.com/questions/574396/best-way-to-save-a-stream-to-a-file-in-asp-net-3-5/575059#5750590Answer by Rob Packwood for Best way to save a Stream to a file in asp.net 3.5?Rob Packwood2009-02-22T15:24:05Z2009-02-22T15:24:05Z<pre><code>private void DownloadEmbeddedResource(
string resourceName, Assembly resourceAssembly, string downloadFileName )
{
using ( Stream stream = resourceAssembly.GetManifestResourceStream( resourceName ) )
{
if ( stream != null )
{
Response.Clear();
string headerValue = string.Format( "attachment; filename={0}", downloadFileName );
Response.AppendHeader( "Content-Disposition:", headerValue );
Response.AppendHeader( "Content-Length", stream.Length.ToString() );
Response.ContentType = "text/xml";
var byteBuffer = new Byte[1];
using ( var memoryStream = new MemoryStream( byteBuffer, true ) )
{
while ( stream.Read( byteBuffer, 0, byteBuffer.Length ) > 0 )
{
Response.BinaryWrite( memoryStream.ToArray() );
Response.Flush();
}
}
Response.End();
}
}
}
</code></pre>
<p>I ended up using this method above. Thank you for helping me with the syntax tsilb. JohannesH, I would have used your recommendation if the resource wasn't already coming from a different assembly (Sorry, I should have cleared that up in my original question).</p>
<p>The code above works but I am encountering a fairly weird problem... After the method completes and the download finishes, the page is still never seems to come back to life and the mouse is still in hourglass mode like it still thinks work is being done. Any idea on how to remedy that?</p>
<p>Thanks again for all your help!</p>