博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
图片内容保存到数据库,并从数据库里获取图片
阅读量:6803 次
发布时间:2019-06-26

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

 

保存image到database

public bool SaveImage(string filePath)

{
bool isSuccess = false;
string FilePath = filePath;
string filename = FilePath.Substring(FilePath.LastIndexOf("\\") + 1); //得到上传文件的文名
string filetext = string.Empty;
FileStream fs = new FileStream(FilePath, FileMode.OpenOrCreate, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
byte[] fileByte = br.ReadBytes((int)fs.Length);//将流读入到字节数组中
//Byte[] fileByte = new Byte[(int)fs.Length];
//fs.Read(fileByte, 0, fileByte.Length);
//filetext = System.Text.Encoding.Default.GetString(fileByte); //将指定字节数组中的说有字节解码为一个字符串
SqlConnection conn = new SqlConnection(@"server=.;database=SoyErp2.0;uid=sa;pwd=sa;");

conn.Open();

StringBuilder strSql = new StringBuilder();
strSql.Append("INSERT INTO dbo.picSaveToSql ( ImgFile) VALUES ( @Photo )");
SqlCommand cmd = new SqlCommand(strSql.ToString(), conn);
cmd.Parameters.Add("@Photo", SqlDbType.Binary).Value = fileByte;
isSuccess =cmd.ExecuteNonQuery()>0?true:false;
conn.Close();
fs.Close();
return isSuccess;
}

//从database获取图片

public Bitmap Get_Image()

{
byte[] imagebytes = null;
SqlConnection conn = new SqlConnection(@"server=.;database=SoyErp2.0;uid=sa;pwd=sa;");
conn.Open();
SqlCommand com = new SqlCommand(" SELECT * FROM picSaveToSql WHERE Id=4 ", conn);
SqlDataReader dr = com.ExecuteReader();
while (dr.Read())
{
imagebytes = (byte[])dr.GetValue(1);
}
dr.Close();
conn.Close();
MemoryStream ms = new MemoryStream(imagebytes);
Bitmap bmpt = new Bitmap(ms);
return bmpt;
}

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

你可能感兴趣的文章
cms无法登陆
查看>>
JavaScript中事件处理
查看>>
VSTO 向office文档中插入内容
查看>>
【百度地图API】关于如何进行城市切换的三种方式
查看>>
How to provide highlighting with Spring data elasticsearch
查看>>
MongoDB 游标
查看>>
即将搭载人工智能芯片的华为Mate10,究竟会为业界带来什么?
查看>>
Android实现登录小demo
查看>>
AgentWeb是基于Android WebView一个功能完善小型浏览器库
查看>>
开放数据中心联盟推8个云计算应用模型
查看>>
学习数据分析的“里程碑”是什么?
查看>>
数据科学与DevOps之间的差距还有救吗?
查看>>
信息化一周回顾:金融业大数据十大趋势
查看>>
Http、TCP/IP协议与Socket之间的区别
查看>>
文思海辉:智慧数据避免企业成为大数据时代落伍者
查看>>
迅雷发布“星域CDN” 做条颠覆市场的鲶鱼
查看>>
英国《数字经济法案》
查看>>
Asp.net与Flex交互测试记录
查看>>
后退时保存表单状态
查看>>
泛函编程(13)-无穷数据流-Infinite Stream
查看>>