如何将图片储存在MySQL数据库里?

如何将图片储存在MySQL数据库里?,第1张

解决方法一般有两种:

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()

//存入

SqlConnection

myConn = new SqlConnection("Data Source=.Initial Catalog=stumanageUser

ID=saPassword=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

采用这两种方式可以根据实际需求灵活选择。

一般没有人这么做的,因为图片文件一般都比较大。试想一下你的一个图片大小为20KB,你有5000张这样的图片,那你的要消耗的就是100MB,而存放到数据库的大小肯定超过100MB,而且数据库对图片的提取对系统的消耗是很大的。

建议的做法是用一个字符串存储图片的路径,当然你还可以通天其他字段写上图片的大小啊什么的属性。如:表名为imageimg_id int(8) unsignedimg_dir varchar(100)img_weight float(6)img_height float(6)这样你就可以通过查询这几个字符串从而得到图片了。

如果你非要用数据库保存的话,mysql好像也确实提供了可以存储图片的格式,具体什么去查一下mysql帮助文档吧,我也既不清楚了。

GOOD LUCK!!!

为避免麻烦。

一般来说,我们可以将图像文件插入到相应的存储位置,而不是文件本身,以避免直接插入数据库的麻烦。

在数据库的开发过程中,不可避免地要向数据库中插入图片或音频文件。如果在将图像插入mysql的过程中出现问题,可以检查mysql数据库允许的最大数据包大小。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7306169.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-04
下一篇 2023-04-04

发表评论

登录后才能评论

评论列表(0条)

保存