zoukankan      html  css  js  c++  java
  • Docx转Doc操作(c#)

    第一次使用Microsoft.Office.Interop.Word组件,马克一下。

    private void Docx2Doc(object sourceFileName, object targetFileName)
    {
        object missingValue = System.Reflection.Missing.Value;
    
        Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application();
        Microsoft.Office.Interop.Word.Document doc = wordApp.Documents.Open(
            ref sourceFileName,
            ref missingValue, ref missingValue, ref missingValue, ref missingValue,
            ref missingValue, ref missingValue, ref missingValue, ref missingValue,
            ref missingValue, ref missingValue, ref missingValue, ref missingValue,
            ref missingValue, ref missingValue, ref missingValue);
    
        object FileFormat = msWord.WdSaveFormat.wdFormatDocument; 
        object LockComments = false;
        object Password = missingValue;
        object AddToRecentFiles = false;
        object WritePassword = missingValue;
        object ReadOnlyRecommended = false;
        object EmbedTrueTypeFonts = true;
        object SaveNativePictureFormat = missingValue;
        object SaveFormsData = missingValue;
        object SaveAsAOCELetter = missingValue;
        object Encoding = missingValue;
        object InsertLineBreaks = missingValue;
        object AllowSubstitutions = missingValue;
        object LineEnding = missingValue;
        object AddBiDiMarks = missingValue;
        object CompatibilityMode = missingValue;
    
        doc.SaveAs(ref targetFileName, ref FileFormat,
            ref LockComments, ref Password, ref AddToRecentFiles, ref WritePassword,
            ref ReadOnlyRecommended, ref EmbedTrueTypeFonts, ref SaveNativePictureFormat, ref SaveFormsData,
            ref SaveAsAOCELetter, ref Encoding, ref InsertLineBreaks, ref AllowSubstitutions,
            ref LineEnding, ref AddBiDiMarks);
    
        //doc.SaveAs(ref targetFileName, ref FileFormat, 
        //        ref MissingValue, ref MissingValue, ref MissingValue, ref MissingValue, 
        //        ref MissingValue, ref MissingValue, ref MissingValue, ref MissingValue, 
        //        ref MissingValue, ref MissingValue, ref MissingValue, ref MissingValue, 
        //        ref MissingValue, ref MissingValue);
    
    
        wordApp.Documents.Close(ref missingValue, ref missingValue, ref missingValue);
    
        //关闭进程
        object saveOption = msWord.WdSaveOptions.wdDoNotSaveChanges;
        wordApp.Application.Quit(ref saveOption, ref missingValue, ref missingValue);
    }
    
  • 相关阅读:
    使用RestTemplate发送post请求,请求头中封装参数
    LocalDateTime的一些用法
    java实现遍历文件目录,根据文件最后的修改时间排序,并将文件全路径存入List集合
    【Quartz】Quartz存储与持久化-基于quartz.properties的配置
    《分布式任务调度平台XXL-JOB》
    SpringBoot集成Quartz实现定时器
    springboot整合Quartz实现动态配置定时任务
    Java读取文件创建时间和最后修改时间
    杂七杂八快捷键🍿
    git命令笔记
  • 原文地址:https://www.cnblogs.com/shijun/p/2863022.html
Copyright © 2011-2022 走看看