将图⽚储存在MySQL数据库中的⼏种⽅法
通常对⽤户上传的图⽚需要保存到数据库中。
解决⽅法⼀般有两种:
1、将图⽚保存的路径存储到数据库;
2、将图⽚以⼆进制数据流的形式直接写⼊数据库字段中。
以下为具体⽅法:
⼀、保存图⽚的上传路径到数据库:
  string uppath="";//⽤于保存图⽚上传路径
  //获取上传图⽚的⽂件名
  string fileFullname = this.FileUpload1.FileName;
  //获取图⽚上传的时间,以时间作为图⽚的名字可以防⽌图⽚重名
  string dataName = DateTime.Now.ToString("yyyyMMddhhmmss");
  //获取图⽚的⽂件名(不含扩展名)
  string fileName = fileFullname.Substring(fileFullname.LastIndexOf("\\") + 1);
  //获取图⽚扩展名
  string type = fileFullname.Substring(fileFullname.LastIndexOf(".") + 1);
  //判断是否为要求的格式
  if (type == "bmp" || type == "jpg" || type == "jpeg" || type == "gif" || type == "JPG" || type == "JPEG" || type == "BMP" || type == "GIF")  {
  //将图⽚上传到指定路径的⽂件夹
  this.FileUpload1.SaveAs(Server.MapPath("~/upload") + "\\" + dataName + "." + type);
  //将路径保存到变量,将该变量的值保存到数据库相应字段即可
  uppath = "~/upload/" + dataName + "." + type;
  }
⼆、将图⽚以⼆进制数据流直接保存到数据库:
引⽤如下命名空间:
using System.Drawing;
  using System.IO;
  using System.Data.SqlClient;
  设计数据库时,表中相应的字段类型为iamge
  保存:
  //图⽚路径
  string strPath = this.FileUpload1.PostedFile.FileName.ToString ();
  //读取图⽚
  FileStream fs = new System.IO.FileStream(strPath, FileMode.Open, FileAccess.Read);
  BinaryReader br = new BinaryReader(fs);
  byte[] photo = br.ReadBytes((int)fs.Length);
  br.Close();
  fs.Close();
mysql存储文档  //存⼊
  SqlConnection myConn = new SqlConnection("Data Source=.;Initial Catalog=stumanage;User ID=sa;Password=123");
  string strComm = " INSERT INTO stuInfo(stuid,stuimage) VALUES(107,@photoBinary )";//操作数据库语句根据需要修改
  SqlCommand myComm = new SqlCommand(strComm, myConn);
  myComm.Parameters.Add("@photoBinary", SqlDbType.Binary, photo.Length);
  myComm.Parameters["@photoBinary"].Value = photo;
  myConn.Open();
  if (myComm.ExecuteNonQuery() > 0)
  {
  this.Label1.Text = "ok";
  }
  myConn.Close();
  读取:
  ...连接数据库字符串省略
  mycon.Open();
  SqlCommand command = new
  SqlCommand("select stuimage from stuInfo where stuid=107", mycon);//查询语句根据需要修改
  byte[] image = (byte[])command.ExecuteScalar ();
  //指定从数据库读取出来的图⽚的保存路径及名字
  string strPath = "~/Upload/zhangsan.JPG";
  string strPhotoPath = Server.MapPath(strPath);
  //按上⾯的路径与名字保存图⽚⽂件
  BinaryWriter bw = new BinaryWriter(File.Open(strPhotoPath,FileMode.OpenOrCreate));
  bw.Write(image);
  bw.Close();
  //显⽰图⽚
  this.Image1.ImageUrl = strPath;
  //采⽤这两种⽅式可以根据实际需求灵活选择。
总结
以上就是这篇⽂章的全部内容了,希望本⽂的内容对⼤家的学习或者⼯作具有⼀定的参考学习价值,谢谢⼤家对的⽀持。如果你想了解更多相关内容请查看下⾯相关链接

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。