博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net如何实现word文档在线预览
阅读量:6090 次
发布时间:2019-06-20

本文共 1441 字,大约阅读时间需要 4 分钟。

实现方式:office文档转html,再在浏览器里面在线浏览

 

1、首先引入com组件中office库,然后在程序集扩展中引入word的dll

 

 

 

2、将Microsoft.Office.Interop.Word的嵌入互操作类型设置为 false,如图

 

3、主要代码

 
C# 代码   
复制
using System;using System.Collections.Generic; using System.Linq; using System.Web; using Microsoft.Office.Core; using Word = Microsoft.Office.Interop.Word; namespace Wolfy.OfficePreview { public class Office2HtmlHelper { ///  /// Word转成Html ///  /// 要转换的文档的路径 /// 转换成html的保存路径 /// 转换成html的文件名字  public static void Word2Html(string path, string savePath, string wordFileName) { Word.ApplicationClass word = new Word.ApplicationClass(); Type wordType = word.GetType(); Word.Documents docs = word.Documents; Type docsType = docs.GetType(); Word.Document doc = (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, Word.WdSaveFormat.wdFormatFilteredHTML }); docType.InvokeMember("Close", System.Reflection.BindingFlags.InvokeMethod, null, doc, null); wordType.InvokeMember("Quit", System.Reflection.BindingFlags.InvokeMethod, null, word, null); } } }

 

调用

Office2HtmlHelper.Word2Html(MapPath("/Doc/分析某网站的SEO策略(外链篇).doc"), MapPath("/Html/"), "分析某网站的SEO策略(外链篇)");

转载地址:http://hnlwa.baihongyu.com/

你可能感兴趣的文章
Differences between Hub, Network Bridge, Switch and Router
查看>>
redmine如何添加qq邮箱功能
查看>>
Tsung参数说明【转载】
查看>>
solr学习(一)_solr4.2.0在tomcat6.0+win7上的部署
查看>>
redis sort
查看>>
iptables详解
查看>>
C语言学习笔记(五) 预处理符号
查看>>
SVN cleanup操作反复失败解决办法
查看>>
JavaSE_02基本语法
查看>>
MWC2015记者观展(二) 百年不遇,网络架构深层调整
查看>>
可靠传输协议(RTP)--EIGRP
查看>>
Windows Server 2012 R2的森林和域级别
查看>>
Visual Studio 自定义项目模版
查看>>
sed简单使用
查看>>
驱动开发中使用安全字符串函数
查看>>
老子经典名言解读
查看>>
centos64 安装apache
查看>>
协同过滤推荐算法
查看>>
Android开发中“即编即达”的用户模型
查看>>
HIVE安装配置
查看>>