高分求高手解答

解决方案 »

  1.   

    關注。之前聽說POI可以。但也是不行。
      

  2.   

    对啊,好象jacob可以
    但是我只能实现在其中插入文本内容
    插入图片,表格我就搞不来了
    高手们
    帮帮忙吧
      

  3.   

    不知道有没有第3方的插件,或者你可以使用native,jni调用c或者.net来实现。
      

  4.   

    有jacob包用来操作word,但是不知道怎么在里面插入图片
      

  5.   

    java交流群-22065798
    互相学习 共同提高
      

  6.   

    http://community.csdn.net/Expert/topic/4522/4522651.xml?temp=.3793604
    希望对你有帮助。^_^
      

  7.   

    public void insertText(String text) 

    // Get the current selection within Word at the moment. If 
    // a new document has just been created then this will be at 
    // the top of the new doc 
    Dispatch selection = Dispatch.get(MsWordApp,"Selection").toDispatch(); 
    //Put the specified text at the insertion point 
    Dispatch.put(selection,"Text",text);

    }
    用上面这个可以插入文本,插入图片不知道参数该写什么,
    put()方法里也不知道该写什么