首先添加引用html
引用命名空間ui
using Microsoft.Office.Interop.Word; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Word = Microsoft.Office.Interop.Word;
後臺代碼spa
protected void Page_Load(object sender, EventArgs e) { string wordPath = Server.MapPath("abc.doc");//虛擬路徑 從頁面出發找到的位置 //存放html文件的完整路徑 string htmlPath = Server.MapPath("abc.html"); //上傳word文件, 因爲只是作示例,在這裏很少作文件類型、大小、格式以及是否存在的判斷 FileUpload1.SaveAs(wordPath); #region 文件格式轉換 //請引用Microsoft.Office.Interop.Word ApplicationClass word = new ApplicationClass(); Type wordType = word.GetType(); Documents docs = word.Documents; // 打開文件 Type docsType = docs.GetType(); object fileName = wordPath; //"f:\\cc.doc"; Document doc = (Document)docsType.InvokeMember("Open", BindingFlags.InvokeMethod, null, (object)docs, new Object[] { fileName, true, true }); //判斷與文件轉換相關的文件是否存在,存在則刪除。(這裏,最好還判斷一下存放文件的目錄是否存在,不存在則建立) if (File.Exists(htmlPath)) { File.Delete(htmlPath); } //每個html文件,有一個對應的存放html相關元素的文件夾(html文件名.files) if (Directory.Exists(htmlPath.Replace(".html", ".files"))) { Directory.Delete(htmlPath.Replace(".html", ".files"), true); }; //轉換格式,調用word的「另存爲」方法 Type docType = doc.GetType(); object saveFileName = htmlPath; //"f:\\aaa.html"; docType.InvokeMember("SaveAs", BindingFlags.InvokeMethod, null, doc, new object[] { saveFileName, WdSaveFormat.wdFormatHTML }); // 退出 Word wordType.InvokeMember("Quit", BindingFlags.InvokeMethod, null, word, null); #endregion Response.Redirect("abc.html"); }
完成!code