asp.net word文档转换成html,ASP.NET将Word转化为HTML

需要在项目中添加引用:Microsoft.Office.Interop。可能出现“无法嵌入互操作类型……”,解决办法:选中项目中引入word的dll,鼠标右键,选择属性,把“嵌入互操作类型”设置为False。实例代码://存放word文件的完整路径

string wordPath = Server.MapPath("~/UploadFile/FileManage/1.docx");

//存放html文件的完整路径

string htmlPath = Server.MapPath("~/UploadFile/FileManage/1.html");

#region 文件格式转换

//需要引用Microsoft.Office.Interop.Word

Microsoft.Office.Interop.Word.ApplicationClass word = new Microsoft.Office.Interop.Word.ApplicationClass();

Type wordType = word.GetType();

Microsoft.Office.Interop.Word.Documents docs = word.Documents;

// 打开文件

Type docsType = docs.GetType();

object fileName = wordPath;

Microsoft.Office.Interop.Word.Document doc = (Microsoft.Office.Interop.Word.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;

docType.InvokeMember("SaveAs", BindingFlags.InvokeMethod, null, doc, new object[] { saveFileName, Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatHTML });

// 退出 Word

wordType.InvokeMember("Quit", BindingFlags.InvokeMethod, null, word, null);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值