0

我的困境是我需要检索存储在 oracle 表中的 blob 数据。我使用 jquery 创建了链接到通用 http 处理程序 blobHandler.ashx 的数据链接,我在其中查询数据库中的文件并将其返回给用户。这适用于在浏览器中打开的图像,但当涉及其他文件类型(pdf、word、excel)时,程序仅下载 .ashx 文件本身。

我如何让它下载带有扩展名的文件?

using (OracleConnection objConn = new OracleConnection(conStr))
        {
            using (OracleCommand cmd = new OracleCommand())
            {
                cmd.Connection = objConn;
                cmd.CommandType = CommandType.Text;
                cmd.CommandText = "SELECT fl.file_content_type, fl.file_data,fl.file_name FROM fnd_lobs fl WHERE fl.file_id = " + mediano;

                try
                {
                    objConn.Open();
                    OracleDataReader dr = cmd.ExecuteReader();
                    while (dr.Read())
                    {

                            OracleBlob blob = dr.GetOracleBlob(1);
                            FileStream FS = new FileStream(dr["file_name"].ToString(), FileMode.Create);
                            Byte[] byteArr = new Byte[blob.Length];
                            int i = blob.Read(byteArr,0,System.Convert.ToInt32(blob.Length));
                            MemoryStream memStream = new MemoryStream(byteArr);

                            context.Response.AddHeader("Content-disposition: inline", "attachment; filename=" + dr["file_name"]);
                            context.Response.ContentType = dr["file_content_type"].ToString();
                            context.Response.OutputStream.Write(byteArr,0,i);



                    }
                    }
                }
                catch(Exception exe)
                {
                    context.Response.Write(exe.Message);
                }
                finally
                {

                    cmd.Dispose();
                    //pcur.Dispose();
                    objConn.Close();
                    objConn.Dispose();
                    context.Response.Flush();
                    context.Response.End();
                }

            }
        }

我正在使用 .net framework 1.1、visual studio 2003、oracle 数据库版本 10.3.0.5

提前感谢您提供的任何建议这是我在这里的第一个问题。

4

1 回答 1

1

您需要在响应对象中设置正确的内容类型标头,以便浏览器知道如何相应地处理响应。

如果你想设置下载文件的名称,你可以看看这里

于 2013-05-07T18:07:24.237 回答