.NET儲存PDF、Word和Excel到資料庫的方法詳解

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了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教程

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.