這篇文章主要為大家詳細介紹了ASP.NET儲存PDF、Word和Excel檔案到資料庫的相關資料,具有一定的參考價值,感興趣的小夥伴們可以參考一下
在項目中,有時候我們很需要把PDF、Word和Excel文檔等等上傳到資料庫,以便日後使用。今天這篇文章向大家講解如何將這些檔案儲存到資料庫的。
詳細步驟
第一步:開啟資料庫,單擊建立查詢,建立一個名稱為Documents的表:
代碼如下:
create table Documents ( SNo int identity, Name_File varchar(100), DisplayName varchar(50), Extension varchar(10), ContentType varchar(200), FileData varbinary(max), FileSize bigint, UploadDate datetime )
這個表包含了這些資料:
SNo序號
Name_File檔案名稱
DisplayName 檔案顯示的名稱
Extension檔案的副檔名
ContentType檔案種類
FileData檔案二進位格式
FileSize檔案大小
UploadDate檔案匯入時間
第二步:開啟Visual Studio,建立一個空網站,命名為“FilesToBinary”
第三步:再添加一個新頁面,命名為“Conversion.aspx”
在這個頁面我們需要添加TextBox ,FileUpload ,Button這三個控制項。
設計介面
當然你也可以在Conversion.apsx檔案直接輸入下列代碼:
顯示檔案 <asp:TextBox ID="txtfilename" runat="server"> </asp:TextBox> <br /> 選擇檔案 <asp:FileUpload ID="FileUpload1" runat="server" /> <br /> <asp:Button ID="Button1" runat="server" Text="匯入" OnClick="Button1_Click" />
第四步:控制項添加後,雙擊Button,在Conversion.apxs.cs檔案添加以下命名空間。
using System;using System.Web;using System.Data.SqlClient;using System.Data;using System.IO;
然後在Button1_Click編寫代碼,將檔案轉換為二進位流,點擊Button後檔案便可存到資料庫中。
代碼如下:
protected void Button1_Click(object sender, EventArgs e) { if (!FileUpload1.HasFile) { Response.Write("未選擇檔案"); return; } else { string filename = Path.GetFileName(FileUpload1.PostedFile.FileName); string extension = Path.GetExtension(filename); string contentType = FileUpload1.PostedFile.ContentType; HttpPostedFile file = FileUpload1.PostedFile; byte[] document = new byte[file.ContentLength]; file.InputStream.Read(document, 0, file.ContentLength); //驗證儲存的副檔名是否為pdf,doc,docx,xls. if ((extension == ".pdf") || (extension == ".doc") || (extension == ".docx") || (extension == ".xls")) { //驗證檔案的大小 if (file.ContentLength <= 31457280) { //表裡插入資料 using (SqlConnection conn = new SqlConnection("Data Source=AFOD3-609221015;Initial Catalog=Personal;Integrated Security=True")) { conn.Open(); string sql = @"insert into Documents(Name_File,DisplayName,Extension,ContentType,FileData,FileSize,UploadDate) values(@Name_File,@DisplayName,@Extension,@ContentType,@FileData,@FileSize,getdate())"; SqlCommand cmd = new SqlCommand(sql, conn); cmd.Parameters.Add("@Name_File", SqlDbType.VarChar); cmd.Parameters["@Name_File"].Value = filename; cmd.Parameters.Add("@DisplayName", SqlDbType.VarChar); cmd.Parameters["@DisplayName"].Value = txtfilename.Text.Trim(); cmd.Parameters.Add("@Extension", SqlDbType.VarChar); cmd.Parameters["@Extension"].Value = extension; cmd.Parameters.Add("@ContentType", SqlDbType.VarChar); cmd.Parameters["@ContentType"].Value = contentType; cmd.Parameters.Add("@FileData", SqlDbType.VarBinary); cmd.Parameters["@FileData"].Value = document; cmd.Parameters.Add("@FileSize", SqlDbType.BigInt); cmd.Parameters["@FileSize"].Value = document.Length; cmd.ExecuteNonQuery(); cmd.Dispose(); conn.Close(); Response.Write("資料已添加"); } } else { Response.Write("檔案大小無效"); return; } } else { Response.Write("無效檔案"); return; } } }
運行結果
這時瀏覽檔案夾,就可以添加我們的檔案了。點擊匯入,成功添加。
如果選擇了不符合規則的檔案後,則會顯示:
返回資料庫,這時PDF、Word 和Excel檔案已經成功添加到資料庫啦。
【相關推薦】
1. 精選:“php程式員工具箱”V0.1版本下載
2. ASP免費視頻教程
3. ASP教程