写入和读取图片(c# asp。net sqlserver)

server|sqlserver

首先要创建一个表包含自段image 和 type 类型各自为image 和 vnanchar

WebForm1.aspx

<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="ReadAndWritePicFromDB.WebForm1" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <HTML> <HEAD> <title>WebForm1</title> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" Content="C#"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </HEAD> <body MS_POSITIONING="GridLayout"> <form id="Form1" method="post" runat="server"> <FONT face="宋体"><INPUT id="File1" style="Z-INDEX: 101; LEFT: 112px; POSITION: absolute; TOP: 88px" type="file" name="File1" runat="server"></FONT> <asp:Button id="Button1" style="Z-INDEX: 102; LEFT: 400px; POSITION: absolute; TOP: 88px" runat="server" Text="Write" Width="104px"></asp:Button> <asp:Button id="Button2" style="Z-INDEX: 103; LEFT: 552px; POSITION: absolute; TOP: 88px" runat="server" Text="Read" Width="105px"></asp:Button> </form> </body> </HTML>

WebForm1.aspx.cs

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
using System.Data.SqlClient;

namespace ReadAndWritePicFromDB
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.HtmlControls.HtmlInputFile File1;
protected System.Web.UI.WebControls.Button Button1;
private string fileName = "" ;
protected System.Web.UI.WebControls.Button Button2;
private static SqlConnection conn = null;

private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
ConnectDB();
}

//得到文件名
private string GetFile()
{
HttpPostedFile file = File1.PostedFile;
fileName = file.FileName;

return fileName;
}

//读取文件内容
private byte[] ReadFile()
{
FileStream file = File.OpenRead(GetFile());
byte[] content = new byte[file.Length];
file.Read(content,0,content.Length);
file.Close();

return content;
}

//连接数据库
private void ConnectDB()
{
string connStr = "Initial Catalog=;Data Source=;User ID=;Password=;";
conn = new SqlConnection(connStr);
conn.Open();
}

//写入图片到数据库中
private void WriteImage()
{
SqlCommand comm = conn.CreateCommand();
comm.CommandText = "insert into images(image,type) values(@image,@type)";
comm.CommandType = CommandType.Text;
SqlParameter param = comm.Parameters.Add("@image",SqlDbType.Image);
param.Value = ReadFile();
param = comm.Parameters.Add("@type",SqlDbType.NVarChar);
param.Value = GetContentType(new FileInfo(fileName).Extension.Remove(0,1));

if(comm.ExecuteNonQuery() == 1)
Response.Write("Successful");
else
Response.Write("Fail");

conn.Close();
}

//获取图片的后缀名
private string GetContentType(string extension)
{
string type = "";

if(extension.Equals("jpg") || extension.Equals("JPG"))
type = "jpeg";
else
type = extension;

return "image/"+type;
}

//从数据库中读取图片
private void ReadImage()
{
SqlCommand comm = conn.CreateCommand();
comm.CommandText = "select image,type from images";
comm.CommandType = CommandType.Text;

SqlDataReader reader = comm.ExecuteReader();
while(reader.Read())
{
Response.ContentType = reader["type"].ToString();//读写类型 一定要设置 否则浏览器会当作文本输出

时间: 2024-11-03 18:09:04

写入和读取图片(c# asp。net sqlserver)的相关文章

用Adapter方法在数据库sqlserver里读取图片

问题描述 请问用Adapter方法在数据库sqlserver里读取图片的问题怎么解决读取时总提示"Byte[]的SourceColumn"F_Photo"和String的DataColumn"F_Photo"之间无法转换的类型不匹配."请高手给予答复 解决方案 解决方案二:数据库中保存的是二进制流,你读出来时却当成string字符串来处理.解决方案三:byte[]b=(byte[])cmd.ExecuteScalar();if(b.Length〉

asp读取图片或flash高宽

asp读取图片或flash高宽, Function GetFlashAndPic(url,height,width)  Dim sExtName,ExtName,strTemp  sExtName = Split(url, ".")  ExtName = sExtName(UBound(sExtName))  If LCase(ExtName) = "swf" Then   strTemp = "<embed src=""&quo

MySQL数据库写入图片并读取图片显示到JLabel上的详解

相较于Oracle,MySQL作为一个轻量级的开源的数据库,可谓是大大简化了我们的操作.这次我就来写一个关于数据库存入图片,获取图片的例子吧,也为了今后的复习使用.(我们一般采取存入路径的方式,而不是直接存储字节的方式,毕竟读取的时候还要通过字节读取,并做一些转换,这真的是太麻烦了,但是咧,这次就来个麻烦的吧,咱们用字节的方式) 首先我们需要在MySQL数据库中创建好我们所需要的表 ,下面就是正式的编码了,我们需要一个数据库专用类,用于对数据库的一些操作,我称之为DBUtils package

asp.net使用代码从文件夹里读取图片

计象跑马灯效果时,可以用的上,从文件夹里读取图片 DirectoryInfo imagesfile = new DirectoryInfo(Server.MapPath("../images/"));         Repeater1.DataSource = imagesfile.GetFiles("*.jpg");         Repeater1.DataBind(); 引用的时候重要的是路径,路径写成你自己的. 

ASP.NET实现Cookie功能的三个基本操作(写入,读取,删除)

依照我的习惯,依照前几天在园子里看到的那篇文章"二逼程序员 VS 苦逼程序员",准确点来说,我就是个苦逼的程序员. 1. 二逼程序员(Day Programmers) 2. 苦逼程序员(Night Programmers) 因为我是个Night Programmer.总是在晚上完成各种编码工作.(这篇文章也是晚上三点开始写的,今天中午写完.)   说正事   简而言之,在Cookie的时候有三个过程,分别是"写入,读取,删除".任何伟大之作都是有基本的东西构成的,而

Sqlite数据库插入和读取图片数据

在iOS下用sqlite数据库存储图片,先把你的图片转换成 NSData 形式,然后在数据库添加一行 blob 数据 假定数据库中存在表 test_table(name,image), 下面代码将图片文件test.png的二进制数据写到sqlite数据库: CHAR *name = "test"; NSString * nameString = [NSString stringWithCString:name encoding:NSUTF8StringEncoding]; NSStri

nio-java NIO写入和读取的数据不一样 丢失了很多数据 怎么解决

问题描述 java NIO写入和读取的数据不一样 丢失了很多数据 怎么解决 java NIO写入和读取的数据不一样 丢失了很多数据 怎么解决 我把图片对象存入Bytebuffer, 发到服务器读取后,很多图片都是不完整的 解决方案 Java 读取 C++写入的二进制数据 解决方案二: 求大神给点思路~~~~~

winform中向数据库中读取图片

问题描述 以下是原代码://读取图片Byte[]mybyte=newByte[];mybyte=(byte[])read["pht_photo"];MemoryStreamms=newMemoryStream(mybyte);Imageimg=Image.FromStream(ms);picBox.Image=img;ms.Close();以下是出错信息未处理的"System.ArgumentException"类型其他信息:使用了无效参数(Parameterisn

在C#中如何从数据库中读取图片,然后显示在网页的特定位置?

问题描述 在C#中如何从数据库中读取图片,然后显示在网页的特定位置?谢谢了! 解决方案 解决方案二:用google搜索asp.net数据库图片显示你会得到很多结果