您好,登錄后才能下訂單哦!
本篇文章為大家展示了Asp.net項目中怎么將Word文件轉換成HTML,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
實現方法如下:
//存放word文件的完整路徑 string wordPath = Server.MapPath("/word/test.doc"); //存放html文件的完整路徑 string htmlPath = Server.MapPath("/html/test.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
上述內容就是Asp.net項目中怎么將Word文件轉換成HTML,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。