c#读取Word文本并用html页面方式显示出来

最好有实例。越详细越好!... 最好有实例。越详细越好! 展开
 我来答
huagangyin
2010-11-05 · TA获得超过789个赞
知道小有建树答主
回答量:1280
采纳率:33%
帮助的人:561万
展开全部
测试成功,分享给你
先添加COM引用:
Microsoft Word 12.0 Object Library

示例代码
using System;
using System.Collections.Generic;
using System.Text;

using MSWord = Microsoft.Office.Interop.Word;
using System.IO;
using System.Reflection;

namespace WordProcesser
{
class Program
{
static void Main(string[] args)
{

MSWord.Application wordApp;
MSWord.Document wordDoc;
Object Nothing = Missing.Value;

Console.WriteLine("Input path:");
Object path = Console.ReadLine();

path = @"E:\mobile.docx";

wordApp = new MSWord.ApplicationClass();
wordDoc = wordApp.Documents.Add(ref path, ref Nothing, ref Nothing, ref Nothing);

object format = MSWord.WdSaveFormat.wdFormatFilteredHTML;

Object newPath = @"E:\mobile.html";
wordDoc.SaveAs(ref newPath, ref format, ref Nothing, ref Nothing, ref Nothing,
ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing,
ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
wordDoc.Close(ref Nothing, ref Nothing, ref Nothing);

wordApp.Quit(ref Nothing, ref Nothing, ref Nothing);

Console.WriteLine("Created!");

}
}
}
这里实现了把word转成html的功能,要显示的话直接调用浏览器或者写个winform里面加个webbrowser控件来显示网页页面。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式