读取数据库中的image类型后的保存方式

我数据库中的FileData表里的image字段里面存放的是doc或者是exe类型的文件数据。我怎么把它读出来保存到本地,比如保存为:“文件.doc”或者是“文件.exe... 我数据库中的FileData表里的image字段里面存放的是doc或者是exe类型的文件数据。

我怎么把它读出来保存到本地,比如保存为:“文件.doc”或者是“文件.exe”。
是的,二进制的数,image类型的数据。
展开
 我来答
明桖瑶gr
2008-01-13 · TA获得超过1205个赞
知道小有建树答主
回答量:397
采纳率:100%
帮助的人:614万
展开全部
System.Data.OleDb.OleDbDataReader.GetBytes 方法获取 byte[] 二进制数据。
System.IO.FileStream.Write 方法写入 byte[] 二进制数据。

请参见 MSDN 的详细参数说明,我不粘贴 MSDN 了。

注意:
FileData 表里的 image 字段里面存放的文件特别大(如:几百兆大小),建议不要 GetBytes 方法一次性读取到内存中,这样不仅很耗内存,并且速度也特别慢。

合理的方法:
设立一个循环,分段读取(如:一次读取 1MB)二进制数据,再调用 Write 把刚才读取的数据写入文件,循环到直至数据全部读取完毕。

PS:
通过 GetBytes 的返回值可以判断数据是否读取完毕(判断是否为零)。该方法的返回值表示读取到的字节数。

提示:
假设您一次读取 1000 字节的数据,而数据字段已没有 1000 字节的数据则 GetBytes 返回值 < 1000 否则 GetBytes 返回值 == 1000
百度网友e72012dab
2008-01-14 · TA获得超过407个赞
知道小有建树答主
回答量:492
采纳率:0%
帮助的人:492万
展开全部
只要确认数据存入时没有加密或什么转换操作,那么可以直接这样.
FileStream fs =new FileStream(@"路径\文件.exe",FileMode.Create)

fs.Write(image字节数据)
fs.Close()
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dong_1984dd
2015-08-12 · TA获得超过1.1万个赞
知道小有建树答主
回答量:1070
采纳率:100%
帮助的人:224万
展开全部
  1.  保存图片到数据库,C# 代码如下: 

    private void button2_Click_1(object sender, System.EventArgs e)

    {

    string pathName;

    if (this.openFileDialog1.ShowDialog()==System.Windows.Forms.DialogResult.OK)

    {

    pathName = this.openFileDialog1.FileName;

    System.Drawing.Image img = System.Drawing.Image.FromFile(pathName);

    this.pictureBox1.Image = img;

    //将图像读入到字节数组

    System.IO.FileStream fs = new System.IO.FileStream(pathName,System.IO.FileMode.Open,System.IO.FileAccess.Read);

    byte[] buffByte = new byte[fs.Length];

    fs.Read(buffByte,0,(int)fs.Length);

    fs.Close();

    fs = null;

    //建立Command命令

    string comm = @"Insert into table1(img,name) values(@img,@name)";

    this.sqlCommand1 = new System.Data.SqlClient.SqlCommand ();

    this.sqlCommand1.CommandType = System.Data.CommandType.Text ;

    this.sqlCommand1.CommandText = comm;

    this.sqlCommand1.Connection = this.sqlConnection1 ;

    //创建Parameter

    this.sqlCommand1.Parameters.Add("@img",System.Data.SqlDbType.Image);

    this.sqlCommand1.Parameters[0].Value = http://www.jb51.net/ianakin/archive/2012/02/02/buffByte;

    this.sqlCommand1.Parameters.Add("@name",System.Data.SqlDbType.VarChar);

    this.sqlCommand1.Parameters[1].Value =http://www.jb51.net/ianakin/archive/2012/02/02/pathName.Substring(pathName.LastIndexOf("\\")+1);

    try

    {

    this.sqlConnection1.Open();

    this.sqlCommand1.ExecuteNonQuery();

    this.sqlConnection1.Close();

    }

    catch(System.Exception ee)

    {

    MessageBox.Show(ee.Message );

    }

    buffByte = null;

    this.FillListBox();

    }

  2. 读取图片代码如下:

    SqlConnection conn=new SqlConnection(@"data source=test;uid=sa;pwd=cym;database=testbase");

    conn.Open();

    SqlCommand cmd=new SqlCommand("select 照片 from fuser where password='1b'",conn);

    SqlDataReader reader=cmd.ExecuteReader();

    reader.Read();

    MemoryStream buf=new MemoryStream((byte[])reader[0]);

    Image image=Image.FromStream(buf,true);

    pictureBox1.Image=image;

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qs99521
2008-01-16 · TA获得超过103个赞
知道小有建树答主
回答量:256
采纳率:0%
帮助的人:0
展开全部
imageBytes = (byte[])sqlDr.GetValue(0);
MemoryStream ms = new MemoryStream(imageBytes);
Bitmap bmpt = new Bitmap(ms);
pictureBox1.Image = bmpt;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友6f75ac8fa
2008-01-13 · TA获得超过2513个赞
知道大有可为答主
回答量:1.3万
采纳率:0%
帮助的人:3983万
展开全部
二进制的数吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式