• 大小: 0.04M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 语言: Java
  • 标签:

资源简介

Java 将员工表插入Word文档中(基础篇-实例477).zip

资源截图

代码片段和文件信息

import com.jacob.com.*;
import com.jacob.activeX.ActiveXComponent;

public class Inerttable {
    // word文档
    private Dispatch doc;
    
    // word运行程序对象
    private ActiveXComponent word;
    
    // 所有word文档集合
    private Dispatch documents;
    
    // 选定的范围或插入点
    private Dispatch selection;
    
    private boolean saveOnExit = true;
    
    public Inerttable() {
        ComThread.InitSTA();// 初始化com的线程,非常重要!!使用结束后要调用 realease方法
        if (word == null) {
            word = new ActiveXComponent(“Word.Application“);
            word.setProperty(“Visible“ new Variant(false));
        }
        if (documents == null)
            documents = word.getProperty(“Documents“).toDispatch();
    }
    
    /**
     * 创建一个新的word文档
     */
    public void crea

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         284  2013-11-18 09:30  .classpath
     文件         379  2010-09-10 15:22  .project
     文件         629  2010-09-10 15:22  .settings\org.eclipse.jdt.core.prefs
     文件        3527  2013-11-21 08:42  bin\Inerttable.class
     文件       34468  2013-11-18 09:24  lib\jacob.jar
     文件        4087  2010-09-10 15:22  src\Inerttable.java

评论

共有 条评论