`
chengyue2007
  • 浏览: 1501216 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

[转]Java2word(jacob)操作word文档--eclipse的兼容问题解决

    博客分类:
  • java
阅读更多
前一个月搞的一个招生项目需要动态生成word文档并插入数据。好找一遍发现了Java2Word这个包。java2word是com桥jacob包的封装,它专门针对word文档的操作做了封装,方便使用。

说实话,java2word本身做的不咋地,兼容性不好,也不大稳定。在设计解决方案的时候因为这一点费了不少劲。现总结如下:

1.   安装java2word。该过程将其中的jacob.dll动态链接库复制到system32目录下,可能还有注册操作;

2.   将java2word.jar包复制到tomcat的lib下,引用至工程的build path中,或者直接复制到工程lib下。这两步保证了其中的jacob类正常连接com组件;

3.   编写访问类(见附录);
Java2word中每个word文档对应一个document对象。Document对象拥有open、close、insert以及find和 replace等多种方法。另外,document还含有style属性及其getter和setter来设置word文档指定元素的格式,但这一属性我没用到。原因是只需在目标word文档中待插入数据的位置预先设置好格式,即可保证插入后的文档符合要求(除非需要动态改变)。

4.   Eclipse的兼容性问题。
Java2word,或者说jacob本身对eclipse支持不是很好,在netbean上倒是可以正常调用。对于使用myeclipse的工程,仅按照上面设置可能会出错。这时可作如下处理:
将jacob.dll复制一份到eclipse使用的jdk/bin下(无需注册),这样就可以保证Jacob or java2word的正常工作。(这问题当时快把我给折腾死了)

5.   Word本身对象模型的兼容性问题。
由于涉及到com组件,就必须考虑到与其通信的com组件本身的特性。我在开发时,系统环境是word 2007(当然是D版^^),结果错误百出,经常报java.lang.exception或者application.word没有注册的错误。在朋友提醒后我才恍然大悟:word2003跟2007的对象模型压根儿就是不一样的(至少有差别)。在换成2003后,问题搞定。

后话:其实对于传统word文档的操作一般都会使用asp.net等语言去完成,java与com组件的通信还是其一大软肋。当前的com桥有poi、jcom、jacob等。其中poi简洁易用但功能较弱,jacob功能强大但上手较慢,需视需求而定。

但这个问题在以openxml为基础的2007文档中是不存在的。2007文档实际上是对一组xml的压缩包,其内部结构可以通过将.docx的文档改名为.rar后打开查看便一目了然。这时我们只需要找到存储数据的xml,按照其格式来读取即可。

至于2007格式的word文档,见我转载的文章Java操作office 2007文档

/**
* This is the basic class to operate office files by Java, it's not suggested
* to use itself.Please use the classes derived from it.
*
* @filename: Convertor.java
* @author Me
*/

package ***.***.system.document;

import com.heavenlake.wordapi.Document;

import java.io.File;
import java.util.List;

public class Convertor{
   Document doc = null;
  
   //DocumentLock dl = new DocumentLock( ); //加锁操作会与word程序本身的文件锁冲突

   public Document open( String strFileName){
       if ( "".equals( strFileName) || null == strFileName){
           System.err.println( "File name error !");
           return null;
       }

       //lock the word document. The release operation will appear in the funtion close()

       //dl.setFile( strFileName);

       //dl.lock( );

      
       // judge the state of the file

       File file = new File( strFileName);
       if ( !file.canRead( )){
           System.err.println( "File can not Read ! file:" + strFileName);
           return null;
       }

       // Generate the Instance of Document

       try{
           doc = new Document( );
       }
       catch ( Exception e1){
           System.err.println( "Create Instance Failed (file name:"
                   + strFileName);
           e1.printStackTrace( );

           return null;
       }

       // open the target document

       try{
           if ( null == doc){
               return null;
           }
           doc.open( strFileName);
           return doc;
       }
       catch ( Exception e){
           System.err.println( "The operation Open Failed (file name:"
                   + strFileName);
           e.printStackTrace( );

           // close without save

           if ( !this.close( false)){
               System.err.println( "Error occured when close the file:"
                       + strFileName);
           }

           return null;
       }// end catch

   }

   public boolean close( boolean bSave){
       if ( null != doc){
           // try to close

           try{
               doc.close( bSave);
               return true;
           }
           // if close failed

           catch ( Exception e1){
               // if bSave = true( means tried to close with save failed)

               if ( bSave){
                   // try to close without save

                   try{
                       if ( null != doc){
                           doc.close( !bSave);
                       }
                   }
                   // try to close without save failed

                   catch ( Exception e){
                       e.printStackTrace( );
                   }// end inner try

               }// end inner if

               System.err.println( "The operation Close Failed (document id:"
                       + doc.toString( ));
           }// end outer try

           finally
           {
               //dl.release( );

           }
       }
       return false;
   }

   /**
   * Copy a word's document from a template(not *.dot, but *.doc)
   *
   * @param from:
   * the template file
   * @param to:
   * the target file
   * @return: result of the copy operation
   */

   public boolean copy( String from, String to)
   {
       if ( null == from || "".equals( from) || null == to || "".equals( to))
       {
           return false;
       }

       // 简单的复制操作。对副本进行插入动作,保证原word文档不因插入操作失败而被损坏

       return CopyFile.copyFile( from, to);
   }

   /**
   * insert data into the place identified by bookmarks
   *
   * @param file:
   * target file
   * @param bookmark:
   * List of bookmarks
   * @param data:
   * List of data
   * @return result of the Insert operation
   */

   public boolean conv( String file, List< String> bookmark, List< String> data)
   {
       if ( bookmark.size( ) != data.size( ))
       {
           System.err.println( "The count differs (" + file
                   + ":bookmark and data)");
           return false;
       }

       boolean result = false;

       //Document doc = this.open( file);

       if ( null == doc)
       {
           return result;
       }
       // open file and insert

       try
       {
           result = true;
           for ( int i = 0; i < bookmark.size( ); i++)
           {
               // when exception occurs, continue with the section FOR

               try
               {
                   doc.insertAtBookmark( bookmark.get( i), data.get( i));
               }
               catch ( Exception e)
               {
                   System.err.println( "data insert failed (index:"
                           + String.valueOf( i) + ")");
                   result = false;
                   continue;
               }
           }
       }
       catch ( Exception e1)
       {
           System.err.println( "Open file failed when trying to insert data:"
                   + file);
           // close the file

           if ( !this.close( true))
           {
               result = false;
           }
       }
       return result;
   }

   public boolean insertPic( String strFileName, String bookmark, File fImage)
   {
       if ( null == fImage)
       {
           System.err.println( "Image to insert into is INVALID !");
           return false;
       }

       //Document doc = this.open( strFileName);

       if ( null == doc)
       {
           return false;
       }

       try
       {
           doc.insertAtBookmark( bookmark, fImage);
           return true;
       }
       catch ( Exception e)
       {
           System.err
                   .println( "Open file failed when trying to insert image, file name is "
                           + strFileName);
           e.printStackTrace( );
           if ( !this.close( true))
           {
               return false;
           }
           return false;
       }
   }

   public boolean replaceText( String strFilePath, String toFindText,
           String toInsText, int index)
   {
       if ( null == strFilePath || "".equals( strFilePath))
       {
           System.err.println( "Document Path is INVALID !");
           return false;
       }
       else if ( null == toFindText || "".equals( toFindText))
       {
           System.err.println( "Text to find is INVALID !");
           return false;
       }
       else if ( null == toInsText || "".equals( toInsText))
       {
           System.err.println( "Text to Insert is INVALID !");
           return false;
       }

       //Document doc = this.open( strFilePath);

       if ( null == doc)
       {
           return false;
       }

       // insert

       int i = 0;
       try
       {
           // find to the former toFindText

           for ( ; i < index; i++)
           {
               doc.find( toFindText);
           }
           // replace the next toFindText

           if ( !doc.replace( toFindText, toInsText))
           {
               System.err.println( "No Matching ! index:" + i);
               return false;
           }
           return true;
       }
       catch ( Exception e)
       {
           System.err.println( "Insert error ! File:" + strFilePath);
           e.printStackTrace( );
           // close

           if ( !this.close( true))
           {
               return false;
           }
           return false;
       }
   }

   //test//////////////////////////////


   public static void main( String[] args)
   {
       Convertor conv = new Convertor( );
       Convertor conv1 = new Convertor( );
       conv.open( "e:/1.doc");
       conv1.open( "e:/1.doc");
   }
}

 

 
分享到:
评论

相关推荐

    (转)Java jacob调用打印机打印word文档

    确保使用的Jacob库与Java运行时环境(JRE)以及操作系统位数匹配至关重要,否则会出现兼容性问题。 6. **使用步骤**:在Java中使用Jacob打印Word文档,一般需要以下步骤: - 引入Jacob的jar文件(如`jacob.jar`)...

    使用Jacob来处理Word文档

    以下将详细阐述Jacob的下载、配置以及如何在Eclipse中使用它来读取和操作Word文档。 1. **Jacob的下载和解压** Jacob可以从SourceForge官方网站下载,具体地址为:...

    用Java操作Office 2007

    2. **写入Word文档**:使用XWPFDocument类,可以创建新的.docx文件或修改现有文件。可以添加文本、设置字体、颜色、大小,以及插入图片等。 3. **处理Excel工作簿**:对于.xlsx文件,我们使用XSSFWorkbook类来创建...

    jacob配置以及使用说明

    本教程将详细讲解如何配置Jacob并利用其在Java项目中操作Word文档。 ### 1. 安装与配置Jacob 首先,你需要下载Jacob的JAR文件。在这个案例中,我们有名为`jacob_1.9.rar`的压缩文件,解压后会得到`jacob.jar`。将...

    java中word或者是excel转换成pdf文件

    在Java编程环境中,将Word或Excel文档转换为PDF文件是一个常见的需求,特别是在处理报告、文档自动化或者跨平台兼容性的问题时。本项目利用了Jacob库来实现这一功能,这是一个Java和COM接口的桥梁,允许Java应用程序...

    64位jacob,用于word转html

    在Java环境中,可以使用第三方库来...总的来说,通过64位Jacob库,开发者能够在64位Windows环境下利用Java实现Word到HTML的转换,尽管这种方法可能存在一些限制和潜在问题,但它提供了一个快速且相对简单的解决方案。

    jacob-1.19.zip

    为了解决这些问题,确保正确安装了Jacob所需的dll文件,并将其放在系统PATH环境变量所指向的目录下。同时,注意Jacob可能不适用于64位Java环境,因为它的dll文件是32位的。 博客文档通常会提供更具体的使用示例和...

    Jacob配置文件

    在实际应用中,使用Jacob读取或操作Word文档时需注意以下几点: 1. **兼容性问题**:确保使用的JRE版本与Jacob DLL的版本兼容。 2. **性能考量**:虽然Jacob提供了便利,但频繁的跨语言调用可能会影响性能,特别是...

    jacob.dll控件下载

    1. **与Office集成**:Java开发者可以使用jacob.dll来读写Excel电子表格、创建Word文档、处理PowerPoint演示文稿等,使得Java程序具备了与Microsoft Office深度集成的能力。 2. **自动化任务**:通过COM接口,jacob...

Global site tag (gtag.js) - Google Analytics