码迷,mamicode.com
首页 > Windows程序 > 详细

C# Microsoft.Office.Interop.Word进行Word转PDF

时间:2020-03-12 14:24:55      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:word   sof   logs   nal   get   off   div   https   ima   

原文:https://www.cnblogs.com/huage-1234/p/10879860.html

 之前用Aspose.Word进行Word转PDF发现‘\‘这个字符会被转换成‘¥‘这样的错误,没办法只能换个方法了。下面是Microsoft.Office.Interop.Word转PDF的方法:

技术图片
    public bool WordToPDF(string sourcePath, string targetPath)
    {
        bool result = false;
        Microsoft.Office.Interop.Word.Application application = new Microsoft.Office.Interop.Word.Application();
        Microsoft.Office.Interop.Word.Document document = null;
        try
        {             
            application.Visible = false;
            document = application.Documents.Open(sourcePath);
            document.ExportAsFixedFormat(targetPath, Microsoft.Office.Interop.Word.WdExportFormat.wdExportFormatPDF);
            result = true;
        }
        catch (Exception e)
        {
            LogHelper.WriteLog(GetType(), e, Level.Error);
            result = false;
        }
        finally
        {
            document.Close();
        }
        return result;
    }
技术图片

这样是解决了问题,但是发布到服务器上面的时候。先是未发现下面的错误:技术图片

这个错误还好解决,因为这是服务器上没有安装Office的组件,咱们安装个Office就好了。

C# Microsoft.Office.Interop.Word进行Word转PDF

标签:word   sof   logs   nal   get   off   div   https   ima   

原文地址:https://www.cnblogs.com/zhang1f/p/12468820.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!