一、保存图片的上传路径到数据库:
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
采用俩种方式可以根据实际需求灵活选择。
例如,要存入8张图片信息, *** 作方法和步骤如下:
1、首先,扩展可编程性下面的“用户定义数据类型”为空,如下图所示。
2、其次,完成上述步骤后,选择数据库,然后单击顶部的“新建查询”按钮,如下图所示。
3、接着,完成上述步骤后,直接使用sp_addtype语句定义数据类型,如下图所示。
4、然后,完成上述步骤后,刷新用户定义的数据类型,这一次“用户定义数据类型”下就有数据了,如下图所示。
5、随后,完成上述步骤后,右键单击数据表,然后选择“设计”选项,如下图所示。
6、最后,完成上述步骤后,就可以在数据类型中找到自定义数据类型,如下图所示。
using Systemusing System.Collections.Generic
using System.Linq
using System.Text
using System.IO
using System.Data.SqlClient
using System.Data
namespace ImportImage
{
class Program
{
static void Main(string[] args)
{
string conn = "server=.database=testDBUid=saPwd=sa "
using (SqlConnection myconn = new SqlConnection(conn))
{
myconn.Open()
using (SqlCommand mycomm = new SqlCommand())
{
DirectoryInfo dir = new DirectoryInfo(@"C:\Users\Administrator\Documents\Visual Studio 2008\Projects\DaWuAnswer\DaWuAnswer\images")
foreach (FileInfo item in dir.GetFiles("*.jpg"))
{
string str = string.Format("insert into [数据库中的表的名字] (imagAns) values(@file)", item.Name)//假设你的id是自动增长的
mycomm.CommandText = str
mycomm.Connection = myconn
FileStream fs = new FileStream(item.FullName, FileMode.Open)
BinaryReader br = new BinaryReader(fs)
Byte[] byData = br.ReadBytes((int)fs.Length)
fs.Close()
mycomm.Parameters.Add("@file", SqlDbType.Binary, byData.Length)
mycomm.Parameters["@file"].Value = byData
mycomm.ExecuteNonQuery()
}
}
}
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)