Net Core教程

c#用Aspose将word文件转为html

本文主要是介绍c#用Aspose将word文件转为html,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

sring reportPath="";//自行填写需要转化的文件路径

Aspose.Words.Document doc = new Aspose.Words.Document(reportPath);
Aspose.Words.Saving.HtmlSaveOptions options = new Aspose.Words.Saving.HtmlSaveOptions();
options.ExportRoundtripInformation = true;


string htmlRptPath = pathProvider.MapPath("/Document/Html/质量监督情况报告"+ "/");
//创建存html的文件夹
if (!System.IO.Directory.Exists(htmlRptPath))
{

System.IO.Directory.CreateDirectory(htmlRptPath);
}
doc.Save(htmlRptPath + obj.SuperviseName + ".html", options);

这篇关于c#用Aspose将word文件转为html的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!