zoukankan      html  css  js  c++  java
  • 兼容型Word 并带传统读法

     #region 传统读法

    object readOnly = true;
    object missing = System.Reflection.Missing.Value;
    object fileName = file.FullName;

    Microsoft.Office.Interop.Word.ApplicationClass wordapp
    = new ApplicationClass();

    //打开指定文件(不同版本的COM参数个数有差异,一般而言除第一个外都用missing就行了)
    Microsoft.Office.Interop.Word.Document doc = wordapp.Documents.Open(ref fileName, ref missing, ref readOnly, ref missing,
    ref missing, ref missing, ref missing, ref missing, ref missing,
    ref missing, ref missing, ref missing, ref missing, ref missing,
    ref missing, ref missing);
    //取得doc文件中的文本
    string text = doc.Content.Text;
    //关闭文件
    doc.Close(ref missing, ref missing, ref missing);
    //关闭COM
    wordapp.Quit(ref missing, ref missing, ref missing);


    #endregion


    //程序里静态的引用了Word,运行时如果没有安装是会报错的。像这样的程序要求一定要安装相应版本的程序。
    //可以考虑使用动态引用,这样可以通过代码来检测是否安装了程序,也可以做到版本兼容。
    #region 反射读


    Type objWordType
    = Type.GetTypeFromProgID("Microsoft.Office.Interop.Word");

    object objWordApp = Activator.CreateInstance(objWordType);
    object objDocuments = objWordApp.GetType().InvokeMember("Documents", BindingFlags.GetProperty, null, objWordApp, null);
    object[] openParas = { file.FullName };
    object openDocument = objDocuments.GetType().InvokeMember("Open", BindingFlags.InvokeMethod, null, objDocuments, openParas);


    object openContent = openDocument.GetType().InvokeMember("Content", BindingFlags.GetProperty, null, openDocument, null);

    object opentText = openContent.GetType().InvokeMember("Text", BindingFlags.GetProperty, null, openContent, null);



    //设置界面是否 显示 。 读得话 不显示了
    //object[] pars = { true };
    // objWordApp.GetType().InvokeMember("Visible", BindingFlags.SetProperty, null, objWordApp, pars);


    #endregion


    return opentText.ToString();

  • 相关阅读:
    iview使用之怎样给Page组件添加跳转按钮
    iview使用之怎样通过render函数在table组件表头添加图标及判断多个状态
    iview使用之怎样通过render函数在tabs组件中添加标签
    在HTML中使用JavaScript
    文档对象模型-DOM
    JavaScript之数组去重
    JavaScript之预编译
    自我总结的一些常问面试题-2018上海
    【知识点】KMP算法详解
    【讲题】Galaxy OJ 树形DP专题
  • 原文地址:https://www.cnblogs.com/shikyoh/p/2182304.html
Copyright © 2011-2022 走看看