C# 基於NPOI+Office COM元件 實現20行程式碼線上預覽文件(word,excel,pdf,txt,png)
由於專案需要,需要一個線上預覽office的功能,小編一開始使用的是微軟提供的方法,簡單快捷,但是不符合小編開發需求,
就另外用了:將檔案轉換成html檔案然後預覽html檔案的方法。對微軟提供的方法感興趣的小夥伴可以去看一下,夠簡單直接:word+excle+pdf表格線上瀏覽
我們來說一下小編使用的方法,這種預覽方式基於開源的NPOI+Office COM元件,使用是需要引入這幾個動態連結庫,總體如下:
C#線上預覽文件(word,excel,pdf,txt,png)
- 預覽方式:將檔案轉換成html檔案然後預覽html檔案
- 預覽word檔案:需要引入Interop.Microsoft.Office.Interop.Word.dll(Office COM+元件)
- 預覽Excel檔案:需要引入Interop.Microsoft.Office.Interop.Excel.dll(Office COM+元件)
- PDF檔案直接嵌入到瀏覽器中進行檢視,無需轉換(需安裝pdf閱讀器)(直接使用檔案的路徑訪問即可)
- 文字檔案直接嵌入到瀏覽器進行檢視,無需轉換(直接使用檔案的路徑訪問即可)
- 圖片檔案直接嵌入到瀏覽器進行檢視,無需轉換(直接使用檔案的路徑訪問即可)
下面小編就預覽word檔案和預覽excel檔案進行學習一下。
準備工作:
1、建立MVC專案,引入NPOI和office Com元件動態連結庫,小編使用的是VS2017,
直接在NuGet裡面引入(只演示NPOI的引入,Interop.Microsoft.Office.Interop.Word和Interop.Microsoft.Office.Interop.Excel的引入一樣的操作)
2、在Content檔案加下面建立一個excel檔案和word檔案,裡面的內容可以自定義
程式碼編寫:
後端程式碼:
我們準備完成後就開始編寫程式碼進行除錯,程式碼如下,我直接整個控制器粘貼出來。
using Microsoft.Office.Interop.Excel; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Web; using System.Web.Mvc; namespace WebOnlineWord.Controllers { public class HomeController : Controller { public ActionResult Index() { return View(); } //C#線上預覽文件(word,excel,pdf,txt,png) //1、預覽方式:將檔案轉換成html檔案然後預覽html檔案 //2、預覽word檔案:需要引入Interop.Microsoft.Office.Interop.Word.dll(Office COM元件) //3、預覽Excel檔案:需要引入Interop.Microsoft.Office.Interop.Excel.dll(Office COM元件) //4、PDF檔案直接嵌入到瀏覽器中進行檢視,無需轉換(需安裝pdf閱讀器) //5、文字檔案直接嵌入到瀏覽器進行檢視,無需轉換 //6、圖片檔案直接嵌入到瀏覽器進行檢視,無需轉換 #region Excel預覽方法 /// <summary> /// excel 轉換為html /// </summary> /// <param name="path">要轉換的文件的路徑</param> /// <param name="savePath">轉換成的html的儲存路徑</param> /// <param name="wordFileName">轉換後html檔案的名字</param> public JsonResult ExcelToHtml() { ResultJson result = new ResultJson(); string path = Server.MapPath("/Content/excel.xlsx"); string savePath = Server.MapPath("/Content/"); string wordFileName = "ExcelToHtml"; string str = string.Empty; Microsoft.Office.Interop.Excel.Application repExcel = new Microsoft.Office.Interop.Excel.Application(); Microsoft.Office.Interop.Excel.Workbook workbook = null; Microsoft.Office.Interop.Excel.Worksheet worksheet = null; workbook = repExcel.Application.Workbooks.Open(path, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing); worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1]; object htmlFile = savePath + wordFileName + ".html"; string resultUrl = htmlFile.ToString(); object ofmt = Microsoft.Office.Interop.Excel.XlFileFormat.xlHtml; workbook.SaveAs(htmlFile, ofmt, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing); object osave = false; workbook.Close(osave, Type.Missing, Type.Missing); repExcel.Quit(); result.str = "/Content/" + wordFileName + ".html"; ; return Json(result, JsonRequestBehavior.AllowGet); } #endregion #region Excel預覽方法 /// <summary> /// word 轉換為html /// </summary> /// <param name="path">要轉換的文件的路徑</param> /// <param name="savePath">轉換成的html的儲存路徑</param> /// <param name="wordFileName">轉換後html檔案的名字</param> public JsonResult WordToHtml() { ResultJson result = new ResultJson(); string path = Server.MapPath("/Content/word.docx"); string savePath = Server.MapPath("/Content/"); string wordFileName = "WordToHtml"; Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application(); Type wordType = word.GetType(); Microsoft.Office.Interop.Word.Documents docs = word.Documents; Type docsType = docs.GetType(); Microsoft.Office.Interop.Word.Document doc = (Microsoft.Office.Interop.Word.Document)docsType.InvokeMember("Open", System.Reflection.BindingFlags.InvokeMethod, null, docs, new Object[] { (object)path, true, true }); Type docType = doc.GetType(); string strSaveFileName = savePath + wordFileName + ".html"; object saveFileName = (object)strSaveFileName; docType.InvokeMember("SaveAs", System.Reflection.BindingFlags.InvokeMethod, null, doc, new object[] { saveFileName, Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatFilteredHTML }); docType.InvokeMember("Close", System.Reflection.BindingFlags.InvokeMethod, null, doc, null); wordType.InvokeMember("Quit", System.Reflection.BindingFlags.InvokeMethod, null, word, null); result.str = "/Content/" + wordFileName + ".html"; ; return Json(result, JsonRequestBehavior.AllowGet); } #endregion public class ResultJson { public bool res { get; set; } public string info { get; set; } public string str { get; set; } } } }
前端程式碼:
程式碼如下,我直接整個頁面粘貼出來。
@{ ViewBag.Title = "Home Page"; } <script src="~/Scripts/jquery-3.3.1.min.js"></script> <script type="text/javascript"> //預覽excel function ExcelToHtml() { $.ajax({ url: "/Home/ExcelToHtml", data: "", type: "POST", async: false, dataType: "json", success: function (data) { //獲得視窗的垂直位置 var iWidth = 1400; var iHeight = 800; var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //獲得視窗的水平位置 var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; window.open(data.str, '_blank', 'height=' + iHeight + ',innerHeight=' + iHeight + ',width=' + iWidth + ',innerWidth=' + iWidth + ',top=' + iTop + ',left=' + iLeft + ',status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no'); } }); } //預覽word function WordToHtml() { $.ajax({ url: "/Home/WordToHtml", data: "", type: "POST", async: false, dataType: "json", success: function (data) { //獲得視窗的垂直位置 var iWidth = 1400; var iHeight = 800; var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //獲得視窗的水平位置 var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; window.open(data.str, '_blank', 'height=' + iHeight + ',innerHeight=' + iHeight + ',width=' + iWidth + ',innerWidth=' + iWidth + ',top=' + iTop + ',left=' + iLeft + ',status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no'); } }); } </script> <div style="margin-top:20px;height:800px"> <input type="button" onclick="ExcelToHtml()" value="預覽excel" /> <input type="button" onclick="WordToHtml()" value="預覽word" /> </div>
效果檢視:
線上預覽excel:
如下,很顯然讀取到了我們事先準備好的excel。
線上預覽excel:
如下,很顯然讀取到了我們事先準備好的word。
總結:
到這裡一個簡單的線上預覽office就完成了,這是一個初始手稿,需要優化後續功能。
感興趣的朋友可以關注一波,我們下次學習怎麼線上編輯,實時儲存(每改一下儲存一下)和一鍵儲存(編輯完成後點選儲存)
原文地址:https://www.cnblogs.com/xiongze520/p/11358585.html
轉載請註明出處,謝謝!