读取数据库中的image类型后的保存方式
我怎么把它读出来保存到本地,比如保存为:“文件.doc”或者是“文件.exe”。
是的,二进制的数,image类型的数据。 展开
System.IO.FileStream.Write 方法写入 byte[] 二进制数据。
请参见 MSDN 的详细参数说明,我不粘贴 MSDN 了。
注意:
FileData 表里的 image 字段里面存放的文件特别大(如:几百兆大小),建议不要 GetBytes 方法一次性读取到内存中,这样不仅很耗内存,并且速度也特别慢。
合理的方法:
设立一个循环,分段读取(如:一次读取 1MB)二进制数据,再调用 Write 把刚才读取的数据写入文件,循环到直至数据全部读取完毕。
PS:
通过 GetBytes 的返回值可以判断数据是否读取完毕(判断是否为零)。该方法的返回值表示读取到的字节数。
提示:
假设您一次读取 1000 字节的数据,而数据字段已没有 1000 字节的数据则 GetBytes 返回值 < 1000 否则 GetBytes 返回值 == 1000
FileStream fs =new FileStream(@"路径\文件.exe",FileMode.Create)
fs.Write(image字节数据)
fs.Close()
保存图片到数据库,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();
}
读取图片代码如下:
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;
MemoryStream ms = new MemoryStream(imageBytes);
Bitmap bmpt = new Bitmap(ms);
pictureBox1.Image = bmpt;