1 Star 0 Fork 0

理想天空/WordConvert

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Word2HtmlConvert.cs 2.51 KB
一键复制 编辑 原始数据 按行查看 历史
kenny'song 提交于 2017-06-27 13:55 +08:00 . 添加项目文件。
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace WordPaser
{
public class Word2HtmlConvert
{
public static BaseResult Convert(string wordpath)
{
if (wordpath.Length ==0)
{
return new BaseResult() { isSuccess = false, Message="params length error"};
}
if (!File.Exists(wordpath))
{
return new BaseResult() { isSuccess = false, Message = "file not exists" };
}
FileInfo f = new FileInfo(wordpath);
string filename = f.Name.Replace(".docx", "").Replace(".doc", "");
string htmlpath = Path.Combine( f.Directory.FullName, f.Name.Replace("docx", "html").Replace("doc", "html"));
try
{
Word.Application word = new Word.Application();
word.Visible = false;
Word.Document wordDocument = word.Documents.Open(wordpath, false, true);
wordDocument.SaveAs(htmlpath, Word.WdSaveFormat.wdFormatHTML, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value
, Missing.Value, Missing.Value, Office.MsoEncoding.msoEncodingUTF8);//类型里面包含的类型都可以尝试转
wordDocument.Close(Word.WdSaveOptions.wdSaveChanges, Word.WdOriginalFormat.wdWordDocument, Word.WdRoutingSlipStatus.wdNotYetRouted);
word.Quit(Word.WdSaveOptions.wdSaveChanges, Word.WdOriginalFormat.wdWordDocument, Word.WdRoutingSlipStatus.wdNotYetRouted);
word = null;
GC.Collect();
string str = string.Empty;
using (StreamReader reader = new StreamReader(htmlpath, Encoding.GetEncoding("gbk")))
{
str = reader.ReadToEnd();
}
string webpath = System.Configuration.ConfigurationSettings.AppSettings["webPath"].ToString();
str = str.Replace(filename + ".files", webpath + filename + ".files");
System.IO.File.WriteAllText(htmlpath, str, Encoding.UTF8);
return new BaseResult() { isSuccess = true };
}
catch (Exception e)
{
Console.WriteLine(e.Message);
Console.WriteLine(e.StackTrace);
}
return new BaseResult() { isSuccess = true };
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/song0320/wordconvert.git
[email protected]:song0320/wordconvert.git
song0320
wordconvert
WordConvert
master

搜索帮助