0

我在图像类型的数据库中有一个字段,它以二进制格式存储文件。

现在我想为用户提供一个工具,用户可以从那里下载该文件。我在字节数组对象中有文件数据。如何向用户显示打开的保存对话框?

4

3 回答 3

0

这是一个显示来自数据库的 blob 图像的示例,您可以对其进行修改以提供文件供下载而不是显示图像(id 是数据库中的图像文件 ID):

void  CreateImage(string id)
{
    // Connection string is taken from web.config file.
    SqlConnection _con = new SqlConnection(
      System.Configuration.ConfigurationSettings.AppSettings["DB"]);

    try
    {
        _con.Open();
        SqlCommand _cmd = _con.CreateCommand();
        _cmd.CommandText = "select logo from" + 
                           " pub_info where pub_id='" + 
                           id + "'";
        byte[] _buf = (byte[])_cmd.ExecuteScalar();

        // This is optional
        Response.ContentType = "image/gif";

        //stream it back in the HTTP response
        Response.BinaryWrite(_buf);


    }
    catch
    {}
    finally
    {
        _con.Close();

    }
}
于 2012-10-30T08:17:25.543 回答
0

试试看:创建带有标题的图像的 ashx 文件处理程序:

Content-Type: application/force-download
于 2012-10-30T08:18:13.843 回答
0

关于什么:

//using System.Net;   
WebClient wc = new WebClient();

OpenFileDialog ofd = new OpenFileDialog();
if(ofd.ShowDialog() == DialogResult.OK)
   wc.DownloadFile("http://website.net/image.jpg", ofd.FileName);

编辑:

//using System.IO;
MemoryStream ms = new MemoryStream(array);
Bitmap bmp = new Bitmap(ms);
bmp.Save("C:\\image.bmp");
于 2012-10-30T08:18:45.050 回答