1 Star 0 Fork 0

理想天空/WordConvert

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Program.cs 1021 Bytes
一键复制 编辑 原始数据 按行查看 历史
kenny'song 提交于 2017-06-27 13:55 . 添加项目文件。
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using WpsConvert;
namespace WordPaser
{
class Program
{
static void Main()
{
QueenHelper q = new QueenHelper();
q.Received = (data) => {
string filepath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, data);
string htmlpath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, data.Replace("docx","html").Replace("doc", "html"));
BaseResult result = Word2HtmlConvert.Convert(filepath);
if (result.isSuccess)
{
Console.WriteLine(data + " is Converted");
}
else
{
Console.WriteLine(result.Message);
}
};
q.Listen();
Console.ReadLine();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/song0320/wordconvert.git
[email protected]:song0320/wordconvert.git
song0320
wordconvert
WordConvert
master

搜索帮助