资源简介
Java2Word的文档+jar包+示例代码
代码片段和文件信息
/**
* title: 测试
* Description:
* Copyright: Copyright (c) 天池软件2006
* Company: 天池软件 www.heavenlake.com
* @author 赵光 climber@pku.org.cn
* @version 1.0
*/
import com.heavenlake.wordapi.Document;
public class test {
public test() {
Document doc = null;
try {
doc = new Document();
doc.open(“e:/test.doc“);
doc.insert(“第一章:宪政概论““biaoti1“);
doc.insertAtBookmark(“testbookm““第一章:宪政概论““标题1“);
doc.insertAtBookmark(“testbookm“
new java.io.File(“E:/照片/长白山/DSC00663.JPG“));
}
catch (Exception e) {
e.printStackTrace();
}
finally {
try {
if(doc!=null) doc.close(true);
}
catch (Exception e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
test test1 = new test();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 247698 2007-03-17 14:13 Java2Word.jar
文件 20992 2007-10-30 14:29 说明.doc
文件 291218 2010-08-07 10:28 Java2Word1.1+Install.exe
文件 1060 2007-03-17 14:13 Doc\allclasses-fr
文件 1000 2007-03-17 14:13 Doc\allclasses-nofr
文件 5427 2007-03-17 14:13 Doc\com\heavenlake\wordapi\class-use\Document.html
文件 7390 2007-02-13 00:18 Doc\com\heavenlake\wordapi\class-use\st
文件 9129 2007-03-17 14:13 Doc\com\heavenlake\wordapi\class-use\st
文件 7443 2007-02-13 00:18 Doc\com\heavenlake\wordapi\class-use\Tablest
文件 7410 2007-03-17 14:13 Doc\com\heavenlake\wordapi\class-use\Tablest
文件 42363 2007-03-17 14:13 Doc\com\heavenlake\wordapi\Document.html
文件 1415 2007-03-17 14:13 Doc\com\heavenlake\wordapi\package-fr
文件 6447 2007-03-17 14:13 Doc\com\heavenlake\wordapi\package-summary.html
文件 5769 2007-03-17 14:13 Doc\com\heavenlake\wordapi\package-tree.html
文件 6137 2007-03-17 14:13 Doc\com\heavenlake\wordapi\package-use.html
文件 9386 2007-02-13 00:18 Doc\com\heavenlake\wordapi\st
文件 9661 2007-03-17 14:13 Doc\com\heavenlake\wordapi\st
文件 9461 2007-02-13 00:18 Doc\com\heavenlake\wordapi\Tablest
文件 9740 2007-03-17 14:13 Doc\com\heavenlake\wordapi\Tablest
文件 4903 2007-03-17 14:13 Doc\constant-values.html
文件 4787 2007-03-17 14:13 Doc\deprecated-list.html
文件 8556 2007-03-17 14:13 Doc\help-doc.html
文件 16422 2007-03-17 14:13 Doc\index-all.html
文件 913 2007-03-17 14:13 Doc\index.html
文件 5608 2007-03-17 14:13 Doc\overview-tree.html
文件 24 2007-03-17 14:13 Doc\package-list
文件 785 2007-03-17 14:13 Doc\packages.html
文件 57 2006-12-23 12:20 Doc\resources\inherit.gif
文件 6040 2007-03-17 14:13 Doc\serialized-form.html
文件 1231 2007-03-17 14:13 Doc\st
............此处省略15个文件信息
评论
共有 条评论