6个回答
展开全部
this.pictureBox1.Image
=
Image.FromStream(this.openFileDialog1.OpenFile());
//获取当前图片的路径
string
path
=
openFileDialog1.FileName.ToString();
//将制定路径的图片添加到FileStream类中
FileStream
fs
=
new
FileStream(path,
FileMode.Open,
FileAccess.Read);
//通过FileStream对象实例化BinaryReader对象
BinaryReader
br
=
new
BinaryReader(fs);
//通过BinaryReader类对象的ReadBytes()方法将FileStream类对象转化为二进制数组
byte[]
imgBytesIn
=
br.ReadBytes(Convert.ToInt32(fs.Length));第二步:
//将图片添加到数据库中
string
sql="insert
into
pic
values(@pic)";
SqlParameter[]
param
=
new
SqlParameter[]
{
new
SqlParameter("@pic",
imgBytesIn)
};
DBHelper.GetExecuteQuery(sql,
param);第三步:
//将图片从数据库中取出
string
sql="select
*
from
pic
where
id=0";
SqlDataReader
reader
=
DBHelper.GetExecuteReader(sql,
null);
MemoryStream
mss
=
null;
=
Image.FromStream(this.openFileDialog1.OpenFile());
//获取当前图片的路径
string
path
=
openFileDialog1.FileName.ToString();
//将制定路径的图片添加到FileStream类中
FileStream
fs
=
new
FileStream(path,
FileMode.Open,
FileAccess.Read);
//通过FileStream对象实例化BinaryReader对象
BinaryReader
br
=
new
BinaryReader(fs);
//通过BinaryReader类对象的ReadBytes()方法将FileStream类对象转化为二进制数组
byte[]
imgBytesIn
=
br.ReadBytes(Convert.ToInt32(fs.Length));第二步:
//将图片添加到数据库中
string
sql="insert
into
pic
values(@pic)";
SqlParameter[]
param
=
new
SqlParameter[]
{
new
SqlParameter("@pic",
imgBytesIn)
};
DBHelper.GetExecuteQuery(sql,
param);第三步:
//将图片从数据库中取出
string
sql="select
*
from
pic
where
id=0";
SqlDataReader
reader
=
DBHelper.GetExecuteReader(sql,
null);
MemoryStream
mss
=
null;
展开全部
通常有两种方式:
第一,图片放在固定的文件夹中,把图片的路径保存到数据库表格中;
第二,把图片保存成流的形式直接存到数据库表格中,相对比第一种麻烦,费时。
一般采用第一种方式较多,代码自己找吧,或者找本C#数据库的书,都有。
第一,图片放在固定的文件夹中,把图片的路径保存到数据库表格中;
第二,把图片保存成流的形式直接存到数据库表格中,相对比第一种麻烦,费时。
一般采用第一种方式较多,代码自己找吧,或者找本C#数据库的书,都有。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
C# 将图片保存到SQL数据库:
rivate 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 = url地址
this.sqlCommand1.Parameters.Add("@name",System.Data.SqlDbType.VarChar);
this.sqlCommand1.Parameters[1].Value =
(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();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
最关键的是下面一小段
int length = postedFile.ContentLength;
byte[] content = new byte[length];
postedFile.InputStream.Read(content, 0, length);//读取图片内容二进制
private void SaveImage(Web.HttpPostedFile postedFile, string fileName)
{
string sqlstr = " insert into [UpLoad_TEMP]([fileName],[fileLength],[fileContent]) values(@filename,@filelength,@filecontent)";
int length = postedFile.ContentLength;
byte[] content = new byte[length];
postedFile.InputStream.Read(content, 0, length);//读取图片内容二进制
System.Data.SqlClient.SqlParameter[] parameters =
{
new System.Data.SqlClient.SqlParameter("@filename", fileName),
new System.Data.SqlClient.SqlParameter("@filelength", postedFile.ContentLength),
new System.Data.SqlClient.SqlParameter("@filecontent", content)
};
//to do 执行sql
content = null;
}
int length = postedFile.ContentLength;
byte[] content = new byte[length];
postedFile.InputStream.Read(content, 0, length);//读取图片内容二进制
private void SaveImage(Web.HttpPostedFile postedFile, string fileName)
{
string sqlstr = " insert into [UpLoad_TEMP]([fileName],[fileLength],[fileContent]) values(@filename,@filelength,@filecontent)";
int length = postedFile.ContentLength;
byte[] content = new byte[length];
postedFile.InputStream.Read(content, 0, length);//读取图片内容二进制
System.Data.SqlClient.SqlParameter[] parameters =
{
new System.Data.SqlClient.SqlParameter("@filename", fileName),
new System.Data.SqlClient.SqlParameter("@filelength", postedFile.ContentLength),
new System.Data.SqlClient.SqlParameter("@filecontent", content)
};
//to do 执行sql
content = null;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
图片存储有两种方式。
第一种方式,将图片转换成二进制数据直接存储。这种方式不建议采用。
第二种方式,将图片的存放路劲存放在相应的字段里面。
第一种方式,将图片转换成二进制数据直接存储。这种方式不建议采用。
第二种方式,将图片的存放路劲存放在相应的字段里面。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询