程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> C#將文件保存到數據庫中或者從數據庫中讀取文件

C#將文件保存到數據庫中或者從數據庫中讀取文件

編輯:關於C#

在編程中我們常常會遇到“將文件保存到數據庫中”這樣一個問題,雖然這已不是什麼高難度的問題,但對於一些剛剛開始編程的朋友來說可能是有一點困難。其實,方法非常的簡單,只是可能由於這些朋友剛剛開始編程不久,一時沒有找到方法而已。

下面介紹一下使用C#來完成此項任務。

首先,介紹一下保存文件到數據庫中。

將文件保存到數據庫中,實際上是將文件轉換成二進制流後,將二進制流保存到數據庫相應的字段中。在SQL Server中該字段的數據類型是Image,在Access中該字段的數據類型是OLE對象。

Code

[copy to clipboard]

CODE:

//保存文件到SQL Server數據庫中
FileInfo fi=new FileInfo(fileName);
FileStream fs=fi.OpenRead();
byte[] bytes=new byte[fs.Length];
fs.Read(bytes,0,Convert.ToInt32(fs.Length));
SqlCommand cm=new SqlCommand();
cm.Connection=cn;
cm.CommandType=CommandType.Text;
if(cn.State==0) cn.Open();
cm.CommandText="insert into "+tableName+"("+fieldName+") values(@file)";
SqlParameter spFile=new SqlParameter("@file",SqlDbType.Image);
spFile.Value=bytes;
cm.Parameters.Add(spFile);
cm.ExecuteNonQuery()
//保存文件到Access數據庫中
FileInfo fi=new FileInfo(fileName);
FileStream fs=fi.OpenRead();
byte[] bytes=new byte[fs.Length];
fs.Read(bytes,0,Convert.ToInt32(fs.Length));
OleDbCommand cm=new OleDbCommand();
cm.Connection=cn;
cm.CommandType=CommandType.Text;
if(cn.State==0) cn.Open();
cm.CommandText="insert into "+tableName+"("+fieldName+") values(@file)";
OleDbParameter spFile=new OleDbParameter("@file",OleDbType.Binary);
spFile.Value=bytes;
cm.Parameters.Add(spFile);
cm.ExecuteNonQuery()
//保存客戶端文件到數據庫
   sql="update t_mail set attachfilename=@attachfilename,attachfile=@attachfile where mailid="+mailid;
   myCommand = new SqlCommand(sql, new SqlConnection(ConnStr));
   string path = fl_name.PostedFile.FileName;
   string filename=path.Substring(path.LastIndexOf("")+1,path.Length-path.LastIndexOf("")-1); 
   myCommand.Parameters.Add("@attachfilename",SqlDbType.VarChar);
   myCommand.Parameters["@attachfilename"].Value=filename;
   myCommand.Parameters.Add("@attachfile",SqlDbType.Image);
   Stream fileStream = fl_name.PostedFile.InputStream; 
   int intFileSize = fl_name.PostedFile.ContentLength;
   byte[] fileContent = new byte[intFileSize]; 
   int intStatus = fileStream.Read(fileContent,0,intFileSize); //文件讀取到fileContent數組中
   myCommand.Parameters["@attachfile"].Value=((byte[])fileContent);
   fileStream.Close();
   myCommand.Connection.Open();
   myCommand.ExecuteNonQuery();
   myCommand.Connection.Close();

代碼中的fileName是文件的完整名稱,tableName是要操作的表名稱,fieldName是要保存文件的字段名稱。

兩段代碼實際上是一樣的,只是操作的數據庫不同,使用的對象不同而已。

接著,在說說將文件從數據庫中讀取出來,只介紹從SQL Server中讀取。

Code

[copy to clipboard]

CODE:

SqlDataReader dr=null;
SqlConnection objCn=new SqlConnection();
objCn.ConnectionString="Data Source=(local);User ID=sa;Password=;Initial Catalog=Test";
SqlCommand cm=new SqlCommand();
cm.Connection=cn;
cm.CommandType=CommandType.Text;
cm.CommandText="select "+fieldName+" from "+tableName+" where ID=1";
dr=cm.ExecuteReader();
byte[] File=null; 
if(dr.Read())
{
 File=(byte[])dr[0];
}
FileStream fs;
FileInfo fi=new System.IO.FileInfo(fileName);
fs=fi.OpenWrite();
fs.Write(File,0,File.Length);
fs.Close();

上面的代碼是將保存在數據庫中的文件讀取出來並保存文fileName指定的文件中。

在使用上面的代碼時,別忘了添加System.Data.SqlClient和System.IO引用。

修改:

將讀文件的下面部分的代碼

Code

[copy to clipboard]

CODE:

FileStream fs;
FileInfo fi=new System.IO.FileInfo(fileName);
fs=fi.OpenWrite();
fs.Write(File,0,File.Length);
fs.Close();

修改為

Code

[copy to clipboard]

CODE:

FileStream fs=new FileStream(fileName,FileMode.CreateNew);
BinaryWriter bw=new BinaryWriter(fs);
bw.Write(File,0,File.Length);
bw.Close();
fs.Close();

這樣修改後,就可以解決朋友們提出的“如果想從數據庫中取出,另存為相應的文件時。如WORD文件另存為XXX.DOC('XXX'為文件名) ”問題了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved