博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何将图片保存至数据库?
阅读量:6970 次
发布时间:2019-06-27

本文共 2230 字,大约阅读时间需要 7 分钟。

通常对用户上传的图片需要保存到数据库中。解决方法一般有两种:一种是将图片保存的路径存储到数据库;另一种是将图片以二进制数据流的形式直接写入数据库字段中。以下为具体方法:   一、保存图片的上传路径到数据库:   
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();  //存入  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;
  采用俩种方式可以根据实际需求灵活选择。

转载地址:http://xjasl.baihongyu.com/

你可能感兴趣的文章
(转)淘淘商城系列——前台系统工程搭建
查看>>
JavaScript数组的某些操作(二)
查看>>
反射(1)认识反射
查看>>
Android笔记三十四.Service综合实例二
查看>>
poj2243 && hdu1372 Knight Moves(BFS)
查看>>
对Java、C#转学swift的提醒:学习swift首先要突破心理障碍。
查看>>
DevExpress TreeList控件的复选框
查看>>
在U-Boot中添加自定义命令以实现自动下载程序【转】
查看>>
Python版本,pip版本手动管理
查看>>
elasticsearch命令
查看>>
一起talk C栗子吧(第七回:C语言实例--进制转换)
查看>>
django通用视图(类方法)
查看>>
C++求解数组中出现超1/4的三个数字。
查看>>
php:file()与file_get_contents():讲日志文件没行读为数组形式
查看>>
一起talk C栗子吧(第一百二十一回:C语言实例--线程知识体系图)
查看>>
php/oracle: 解析oracle表中的NCLOB,CLOB字段里面的内容
查看>>
SGU - 186 - The Chain (贪心)
查看>>
自建docker swarm体验简单之美
查看>>
微信定制开发怎么做?
查看>>
LeetCode Unique Paths
查看>>