第一、利用FileInputStream.read(byte[])方法把内容读取到byte[]数组中,比如图片是由二进制数组成的,就可以定义为一个字节数组。
第二、在数据库中对应记录字段应该设置为blob类型,这样就能够顺利保存了
事例代码如下:
PreparedStatement stmt = connection.generatePreparedStatement("INSERT INTO ... ")
stmt.setBytes(1, yourByteArray)
其中,yourByteArray是你读出来的字符数组。
第一种:可以直接进行写入,代码如下:[c-sharp] view plaincopyprint?
public static byte[] GetBytesByImage(PictureBox pb)
{
byte[] photo_byte= null
if (!pb.Image.Equals(null))
{
using (MemoryStream ms = new MemoryStream())
{
Bitmap bmp = new Bitmap(pb.Image)
bmp.Save(ms,System.Drawing.Imaging.ImageFormat.Jpeg)
photo_byte = new byte[ms.Length]
ms.Position = 0
ms.Read(photo_byte, 0, Convert.ToInt32(ms.Length))
bmp.Dispose()
}
}
return photo_byte
}
第二种:首先将照片转化为byte[]类型,然后在写入数据,代码如下;
[c-sharp] view plaincopyprint?
public static byte[] GetBytesByImagePath(string strFile)
{
byte[] photo_byte = null
using (FileStream fs = new FileStream(strFile, FileMode.Open, FileAccess.Read))
{
using (BinaryReader br = new BinaryReader(fs))
{
photo_byte = br.ReadBytes((int)fs.Length)
}
}
return photo_byte
}
第三种:直接读取byte[]并转化为图片;
[c-sharp] view plaincopyprint?
public static Image GetImageByBytes(byte[] bytes)
{
Image photo = null
using (MemoryStream ms = new MemoryStream(bytes))
{
ms.Write(bytes, 0, bytes.Length)
photo = Image.FromStream(ms, true)
}
return photo
}
这些都是存贮单位,word一般叫作“字”:bit:一个二进制位;
byte:包含8bit;
word:系统硬件有关,数据总线为16位,则1word为2byte;32位时,1word为4byte。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)