- 浏览: 86236 次
- 性别:
- 来自: 广州
文章分类
最新评论
-
beichen35:
您好,如何将request注入进去呢?
jcaptcha集群时验证码不能验证的问题 -
zhengzili813:
楼主可以共享下参考么,邮箱276032337@qq.com 谢 ...
flex表单设计器2 -
八岭书生:
你这个文件夹树形结构是怎么实现的啊 我想弄一个加载本地文件夹的 ...
show下我的网盘 类windows文件管理 -
heiheizi:
您好,您可以将您做的表单设计器发一个给我吗?heiheizi@ ...
SQL在线查询设计器2 -
heiheizi:
博主:你好! 对你的SQL在线查询设计器非常感兴趣, ...
SQL在线查询设计器2
提取word文中的关键字信息,替换模板值,经研究采用word书签。
package com.dzf.core.util; import java.util.HashMap; import java.util.List; import java.util.Map; import com.jacob.activeX.ActiveXComponent; import com.jacob.com.ComThread; import com.jacob.com.Dispatch; import com.jacob.com.Variant; /** * @author dzf <a href="mailto:280160522@qq.com">280160522@qq.com</a> */ public class JacobUtil { // 建立一个word物件 private ActiveXComponent MsWordApp = null; // 建立两个word组件 private Dispatch document = null; // selection插入点 private Dispatch selection = null; // content是word的文档内容 private Dispatch content; // repalceStr是word的替换对象 private Dispatch repalceStr; // 建構子 public JacobUtil() { super(); } /** * 开启word档案 * * @param makeVisible * 显示不显示(true:显示;false:不显示) * */ public void openWord(boolean makeVisible) { // 启动com的线程 ComThread.InitSTA(); // 打開word(如果word未开启時) if (MsWordApp == null) { MsWordApp = new ActiveXComponent("Word.Application"); } // 設置word是可見或不可見(true:显示;false:不显示) Dispatch.put(MsWordApp, "Visible", new Variant(makeVisible)); } /** * 建立word的文本內容 * */ public void createNewDocument() { // 建立一個Dispatch物件 Dispatch documents = Dispatch.get(MsWordApp, "Documents").toDispatch(); document = Dispatch.call(documents, "Add").toDispatch(); selection = MsWordApp.getProperty("Selection").toDispatch(); } /** * 打开文件 * * @param inputDoc * 要打开的文件,全路径 * @return Dispatch 打开的文件 */ public void openDocument(String inputDoc) { // 建立一個Dispatch物件 Dispatch documents = Dispatch.get(MsWordApp, "Documents").toDispatch(); document = Dispatch.call(documents, "Open", inputDoc).toDispatch(); selection = MsWordApp.getProperty("Selection").toDispatch(); } /** * 选定内容 * * @return Dispatch 选定的范围或插入点 */ public Dispatch select() { return MsWordApp.getProperty("Selection").toDispatch(); } /** * 把选定内容或插入点向上移动 * * @param selection * 要移动的内容 * @param count * 移动的距离 */ public void moveUp(Dispatch selection, int count) { for (int i = 0; i < count; i++) Dispatch.call(selection, "MoveUp"); } /** * 把选定内容或插入点向下移动 * * @param selection * 要移动的内容 * @param count * 移动的距离 */ public void moveDown(Dispatch selection, int count) { for (int i = 0; i < count; i++) Dispatch.call(selection, "MoveDown"); } /** * 把选定内容或插入点向左移动 * * @param selection * 要移动的内容 * @param count * 移动的距离 */ public void moveLeft(Dispatch selection, int count) { for (int i = 0; i < count; i++) Dispatch.call(selection, "MoveLeft"); } /** * 把选定内容或插入点向右移动 * * @param selection * 要移动的内容 * @param count * 移动的距离 */ public void moveRight(Dispatch selection, int count) { for (int i = 0; i < count; i++) Dispatch.call(selection, "MoveRight"); } /** * 把插入点移动到文件首位置 * * @param selection * 插入点 */ public void moveStart(Dispatch selection) { Dispatch.call(selection, "HomeKey", new Variant(6)); } /** * 从选定内容或插入点开始查找文本 * * @param selection * 选定内容 * @param toFindText * 要查找的文本 * @return boolean true-查找到并选中该文本,false-未查找到文本 */ public boolean find(Dispatch selection, String toFindText) { // 从selection所在位置开始查询 Dispatch find = Dispatch.call(selection, "Find").toDispatch(); // 设置要查找的内容 Dispatch.put(find, "Text", toFindText); // 向前查找 Dispatch.put(find, "Forward", "True"); // 设置格式 // Dispatch.put(find, "Format", "True"); // 大小写匹配 Dispatch.put(find, "MatchCase", "True"); // 全字匹配 Dispatch.put(find, "MatchWholeWord", "True"); // 查找并选中 return Dispatch.call(find, "Execute").getBoolean(); } /** * 把选定内容替换为设定文本 * * @param selection * 选定内容 * @param newText * 替换为文本 */ public void replace(Dispatch selection, String newText) { // 设置替换文本 Dispatch.put(selection, "Text", newText); this.moveRight(selection, 1); } /** * 替换word文件中的内容 * * @param oldStr * @param newStr */ public void replace(String oldSoldStrf, String newStr) { try { moveStart(selection); while (this.find(this.select(), oldSoldStrf)) { this.replace(selection, newStr); } } catch (Exception e) { System.out.println("word文件替换失败"); e.printStackTrace(System.out); } } /** * 获取word文件中某个表格的行数 * * @param tableIndex * @param String */ public String getTableRowsCount(String tableIndex) { if (tableIndex == null || "".equals(tableIndex)) tableIndex = "0"; // 所有表格 Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); // 要填充的表格 Dispatch table = Dispatch.call(tables, "Item", new Variant(tableIndex)).toDispatch(); // 表格的所有行 Dispatch rows = Dispatch.get(table, "Rows").toDispatch(); return new String("" + Dispatch.get(rows, "Count").getInt()); } /** * 全局替换 * * @param selection * 选定内容或起始插入点 * @param oldText * 要替换的文本 * @param newText * 替换为文本 */ public void replaceAll(Dispatch selection, String oldText, Object replaceObj) { // 移动到文件开头 moveStart(selection); if (oldText.startsWith("table") || replaceObj instanceof List) { replaceTable(selection, oldText, (List) replaceObj); } else { String newText = (String) replaceObj; if (oldText.indexOf("image") != -1 || newText.lastIndexOf(".bmp") != -1 || newText.lastIndexOf(".jpg") != -1 || newText.lastIndexOf(".gif") != -1) while (find(selection, oldText)) { replaceImage(selection, newText); Dispatch.call(selection, "MoveRight"); } else while (find(selection, oldText)) { replace(selection, newText); Dispatch.call(selection, "MoveRight"); } } } /** * 替换表格 特殊处理合同模板里面的 项目组成人员的表格 需要做的处理:在别的地下先在表格里把项目负责人的数据加载进去, 在本方法里面,首先获取 * 表格的行数,合并第一列,把第一列的值替换为 "项目负责人" 然后在原来的基础上添加非项目负责人的数据,最后把 * 新添加的数据的第一列的值替换为"主要工作人员" * * @param tableName * 表格名称,形如table$1@1、tabletable$2@1...table$R@N@1...table$R@N,R代表从表格中的第N行开始填充, * N代表word文件中的第N张表 * @param dataList * 数据 */ public void replaceTable(String tableIndex, List dataList) { // 所有表格 Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); // 要填充的表格 Dispatch table = Dispatch.call(tables, "Item", new Variant(tableIndex)) .toDispatch(); // 首先获取表格的行数 String tableRows = this.getTableRowsCount(tableIndex); if (Integer.parseInt(tableRows) > 1) { // 合并 从第二行到最后一行的第一列数据 this.mergeCell(Integer.parseInt(tableIndex), 2, 1, Integer .parseInt(tableRows), 1); Dispatch mergeCell = Dispatch.call(table, "Cell", new Variant(2), new Variant(1)).toDispatch(); // 选中单元格 Dispatch.call(mergeCell, "Select"); // 替换表格内容 Dispatch.put(selection, "Text", "项目负责人"); } if (dataList.size() <= 1) { System.out.println("Empty mostly person!"); return; } // 从第几行开始填充 int fromRow = Integer.parseInt(tableRows) + 1; Object[] obj = null; // 表格的所有行 Dispatch rows = Dispatch.get(table, "Rows").toDispatch(); // 填充表格 for (int i = 1; i <= dataList.size(); i++) { // 某一行数据 obj = (Object[]) dataList.get(i - 1); String[] datas = (String[]) obj; // 在表格中添加一行 if (Dispatch.get(rows, "Count").getInt() < fromRow + i - 1) Dispatch.call(rows, "Add"); // 填充该行的相关列 for (int j = 0; j < datas.length; j++) { // 得到单元格 Dispatch cell = Dispatch.call(table, "Cell", new Variant(fromRow + i - 1), new Variant(j + 1)) .toDispatch(); // 选中单元格 Dispatch.call(cell, "Select"); Dispatch.put(selection, "Text", datas[j]); } } // 下面将新加的数据的第一列合并,将值改为"主要工作人员" // 首先获取表格的行数 String tableAllRows = this.getTableRowsCount(tableIndex); // 合并 从新增数据的第一行到最后一行的第一列单元格进行合并 this.mergeCell(Integer.parseInt(tableIndex), Integer .parseInt(tableRows) + 1, 1, Integer.parseInt(tableAllRows), 1); Dispatch mergeCell2 = Dispatch.call(table, "Cell", new Variant(Integer.parseInt(tableRows) + 1), new Variant(1)) .toDispatch(); // 选中单元格 Dispatch.call(mergeCell2, "Select"); // 替换表格内容 Dispatch.put(selection, "Text", "主要工作人员"); } /** * 替换表格 * * @param isNeedSeqNo * 表示表格的第一列是不是需要序号(0:不需要序号;1:需要序号) * * @param tableName * 表格名称,形如table$1@1、tabletable$2@1...table$R@N@1...table$R@N,R代表从表格中的第N行开始填充, * N代表word文件中的第N张表 * @param dataList * 数据 */ public void replaceTable(String tableName, String isNeedSeqNo, List dataList) { boolean needSeqNo = false; if ("1".equals(isNeedSeqNo)) needSeqNo = true; if (dataList.size() <= 1) { System.out.println("Empty table!"); return; } // // 要填充的列 Object[] datas = null; datas = (Object[]) dataList.get(0); // String[] cols = (String[]) datas; // 表格序号 String tbIndex = tableName.substring(tableName.lastIndexOf("@") + 1); // 从第几行开始填充 int fromRow = Integer.parseInt(tableName.substring(tableName .lastIndexOf("$") + 1, tableName.lastIndexOf("@"))); // 所有表格 Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); // 要填充的表格 Dispatch table = Dispatch.call(tables, "Item", new Variant(tbIndex)) .toDispatch(); // 表格的所有行 Dispatch rows = Dispatch.get(table, "Rows").toDispatch(); // 填充表格 for (int i = 1; i <= dataList.size(); i++) { // 某一行数据 datas = (Object[]) dataList.get(i - 1); // String[] datas = (String[]) obj; // 在表格中添加一行 if (Dispatch.get(rows, "Count").getInt() < fromRow + i - 1) Dispatch.call(rows, "Add"); // 填充该行的相关列 for (int j = 0; j < datas.length; j++) { // 得到单元格 // Dispatch cell = Dispatch.call(table, "Cell", // Integer.toString(fromRow + i - 1), cols[j]) // .toDispatch(); Dispatch cell = Dispatch.call(table, "Cell", new Variant(fromRow + i - 1), new Variant(j + 1)) .toDispatch(); // 选中单元格 Dispatch.call(cell, "Select"); // 设置格式 // Dispatch font = Dispatch.get(selection, "Font").toDispatch(); // Dispatch.put(font, "Bold", "0"); // Dispatch.put(font, "Italic", "0"); // 输入数据,如果需要序号,则第一列添加序号,否则正常 if (needSeqNo && j == 0) Dispatch.put(selection, "Text", i + ""); else if (needSeqNo && j > 0) Dispatch.put(selection, "Text", (String) datas[j]); else Dispatch.put(selection, "Text", (String) datas[j + 1]); } } } /** * 替换模板里面的进度计划的表格 * * @param selection * 插入点 * @param tableName * 表格名称,形如table$1@1、tabletable$2@1...table$R@N@1...table$R@N,R代表从表格中的第N行开始填充, * N代表word文件中的第N张表 * @param fields * 表格中要替换的字段与数据的对应表 */ public void replaceContract(String tableName, List dataList) { if (dataList.size() <= 1) { System.out.println("Empty table!"); return; } // 要填充的列 Object[] obj = null; // 表格序号 String tbIndex = tableName.substring(tableName.lastIndexOf("@") + 1); // 从第几行开始填充 int fromRow = Integer.parseInt(tableName.substring(tableName .lastIndexOf("$") + 1, tableName.lastIndexOf("@"))); // 所有表格 Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); // 要填充的表格 Dispatch table = Dispatch.call(tables, "Item", new Variant(tbIndex)) .toDispatch(); // 表格的所有行 Dispatch rows = Dispatch.get(table, "Rows").toDispatch(); // 填充表格 for (int i = 1; i <= dataList.size(); i++) { // 某一行数据 obj = (Object[]) dataList.get(i - 1); String[] datas = (String[]) obj; // 在表格中添加一行 if (Dispatch.get(rows, "Count").getInt() < fromRow + i - 1) Dispatch.call(rows, "Add"); // 填充该行的相关列 for (int j = 0; j < 2; j++) { // 得到单元格 Dispatch cell = Dispatch.call(table, "Cell", new Variant(fromRow + i - 1), new Variant(j + 1)) .toDispatch(); // 选中单元格 Dispatch.call(cell, "Select"); // 设置格式 // Dispatch font = Dispatch.get(selection, "Font").toDispatch(); // Dispatch.put(font, "Bold", "0"); // Dispatch.put(font, "Italic", "0"); // 输入数据 if (j == 0) Dispatch.put(selection, "Text", "5." + (j + 1)); else { String temp = ""; temp = datas[1] + "-" + datas[2] + "\n" + "主要内容:" + datas[3] + "\n" + "考核目标:" + datas[4]; Dispatch.put(selection, "Text", temp); } } } } /** * 替换表格 * * @param selection * 插入点 * @param tableName * 表格名称,形如table$1@1、tabletable$2@1...table$R@N@1...table$R@N,R代表从表格中的第N行开始填充, * N代表word文件中的第N张表 * @param fields * 表格中要替换的字段与数据的对应表 */ public void replaceTable(Dispatch selection, String tableName, List dataList) { if (dataList.size() <= 1) { System.out.println("Empty table!"); return; } // 要填充的列 Object[] obj = null; // String[] cols = (String[]) dataList.get(0); // 表格序号 String tbIndex = tableName.substring(tableName.lastIndexOf("@") + 1); // 从第几行开始填充 int fromRow = Integer.parseInt(tableName.substring(tableName .lastIndexOf("$") + 1, tableName.lastIndexOf("@"))); // 所有表格 Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); // 要填充的表格 Dispatch table = Dispatch.call(tables, "Item", new Variant(tbIndex)) .toDispatch(); // 表格的所有行 Dispatch rows = Dispatch.get(table, "Rows").toDispatch(); // 填充表格 for (int i = 1; i <= dataList.size(); i++) { // 某一行数据 obj = (Object[]) dataList.get(i - 1); String[] datas = (String[]) obj; // 在表格中添加一行 if (Dispatch.get(rows, "Count").getInt() < fromRow + i - 1) Dispatch.call(rows, "Add"); // 填充该行的相关列 for (int j = 0; j < datas.length; j++) { // 得到单元格 // Dispatch cell = Dispatch.call(table, "Cell", // Integer.toString(fromRow + i - 1), cols[j]) // .toDispatch(); Dispatch cell = Dispatch.call(table, "Cell", new Variant(fromRow + i - 1), new Variant(j + 1)) .toDispatch(); // 选中单元格 Dispatch.call(cell, "Select"); // 设置格式 Dispatch font = Dispatch.get(selection, "Font").toDispatch(); Dispatch.put(font, "Bold", "0"); Dispatch.put(font, "Italic", "0"); // 输入数据 Dispatch.put(selection, "Text", datas[j]); // this.moveRight(selection, 1); } // this.moveDown(selection, count) // this.moveRight(selection, 1); } } /** * 寫入换行到word中 * * @param text * 本文标题 * */ public void insertSplit() { selection = Dispatch.get(MsWordApp, "Selection").toDispatch(); // 輸入內容需要的物件 // Dispatch alignment = Dispatch.get(selection, "ParagraphFormat") // .toDispatch(); // 行列格式化需要的物件 // Dispatch.call(selection, "TypeText", ""); // 寫入标题內容 // Dispatch.call(selection, "TypeParagraph"); // 空一行段落 // Dispatch.put(alignment, "Alignment", "3"); // (1:置中 2:靠右 3:靠左) Dispatch.call(selection, "MoveRight"); // 游标往下一行 } /** * 换行 */ public void insertEnter(){ Dispatch.call(selection, "TypeText", "\r\n"); } /** * 写入文字 */ public void insertContent(String content){ Dispatch.call(selection, "TypeText", content); } /** * 合并表格 * * @param tableIndex * 表格起始点 * @param fstCellRowIdx * 开始列 * @param fstCellColIdx * 开始行 * @param secCellRowIdx * 结束列 * @param secCellColIdx * 结束行 */ public void mergeCell(int tableIndex, int fstCellRowIdx, int fstCellColIdx, int secCellRowIdx, int secCellColIdx) { // 所有表格 Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); // 要填充的表格 Dispatch table = Dispatch.call(tables, "Item", new Variant(tableIndex)).toDispatch(); Dispatch fstCell = Dispatch.call(table, "Cell", new Variant(fstCellRowIdx), new Variant(fstCellColIdx)) .toDispatch(); Dispatch secCell = Dispatch.call(table, "Cell", new Variant(secCellRowIdx), new Variant(secCellColIdx)) .toDispatch(); Dispatch.call(fstCell, "Merge", secCell); } /** * 自动调整表格 * */ public void autoFitTable() { Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); int count = Dispatch.get(tables, "Count").getInt(); // word中的表格数量 for (int i = 0; i < count; i++) { Dispatch table = Dispatch.call(tables, "Item", new Variant(i + 1)) .toDispatch(); Dispatch cols = Dispatch.get(table, "Columns").toDispatch(); Dispatch.call(cols, "AutoFit"); } } /** * 替换图片 * * @param selection * 图片的插入点 * @param imagePath * 图片文件(全路径) */ public void replaceImage(Dispatch selection, String imagePath) { Dispatch.call(Dispatch.get(selection, "InLineShapes").toDispatch(), "AddPicture", imagePath); } /** * 功能: 在文件的当前插入点插入文件 * * @param path * void */ public void insertFile(String path) { // selection = Dispatch.get(MsWordApp, "Selection").toDispatch(); // Dispatch.call(selection, "MoveDown"); Dispatch.invoke(selection, "insertFile", Dispatch.Method, new Object[] { path, "", new Variant(false), new Variant(false), new Variant(false) }, new int[3]); // this.moveStart(selection); } /** * 功能: 在文件的插入点插入文件 * * @param selection * 文件的插入点 * @param path * void */ public void insertFile(Dispatch selection, String path) { Dispatch.invoke(selection, "insertFile", Dispatch.Method, new Object[] { path, "", new Variant(false), new Variant(false), new Variant(false) }, new int[3]); } /** * 往word中插入table * */ public void insertTable(String rows, String cols) { // 建立表格 Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); Dispatch range = Dispatch.get(selection, "Range").toDispatch(); Dispatch.call(tables, "Add", range, new Variant(cols), new Variant(rows), new Variant(1)).toDispatch(); // 設置列数,行数,表格外框寬度 Dispatch.call(selection, "MoveRight"); // 游标移到最右边 } /** * 往表格中插入word文件 * */ public void insertFileToTable(String path, int tableIndex) { Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); Dispatch table = Dispatch.call(tables, "Item", new Variant(tableIndex)) .toDispatch(); Dispatch cell = Dispatch.call(table, "Cell", new Variant(1), new Variant(1)).toDispatch(); Dispatch.call(cell, "Select"); selection = Dispatch.get(MsWordApp, "Selection").toDispatch(); // 主要內容 try { Dispatch.invoke(selection, "insertFile", Dispatch.Method, new Object[] { path, "", new Variant(false), new Variant(false), new Variant(false) }, new int[3]); } catch (Exception e) { e.printStackTrace(); // 主要內容 Dispatch alignment = Dispatch.get(selection, "ParagraphFormat") .toDispatch(); // 行列格式化需要的物件 Dispatch font1 = Dispatch.get(selection, "Font").toDispatch(); // 文件标题 // Dispatch.call(selection, "TypeParagraph"); //空一行段落; Dispatch.put(alignment, "Alignment", "3"); // (1:置中 2:靠右 3:靠左) Dispatch.put(font1, "Bold", "0"); // 字型粗体 Dispatch.put(font1, "Size", "12"); // 字型大小 Dispatch.put(font1, "Color", "0,0,0,0"); // 字型颜色(1,0,0,0=>紅色 // 1,1,0,0=>棕色) // Dispatch.put(font, "Italic", "1"); //字型斜体 Dispatch.call(selection, "TypeText", path); // 寫入标题內容 // 标题格行 Dispatch.call(selection, "TypeParagraph"); // 空一行段落 Dispatch.put(alignment, "Alignment", "3"); // (1:置中 2:靠右 3:靠左) Dispatch.call(selection, "MoveDown"); // 游标往下一行 } // 取消选择(因为最后insert进去的文字会显示反白,所以要取消) Dispatch.call(selection, "MoveRight", new Variant(1), new Variant(1)); insertSplit(); } public void insertTextToTable(String text, int tableIndex) { Dispatch tables = Dispatch.get(document, "Tables").toDispatch(); Dispatch table = Dispatch.call(tables, "Item", new Variant(tableIndex)) .toDispatch(); Dispatch cell = Dispatch.call(table, "Cell", new Variant(1), new Variant(1)).toDispatch(); Dispatch.call(cell, "Select"); selection = Dispatch.get(MsWordApp, "Selection").toDispatch(); // 主要內容 Dispatch alignment = Dispatch.get(selection, "ParagraphFormat") .toDispatch(); // 行列格式化需要的物件 Dispatch font1 = Dispatch.get(selection, "Font").toDispatch(); // 文件标题 // Dispatch.call(selection, "TypeParagraph"); //空一行段落 Dispatch.put(alignment, "Alignment", "3"); // (1:置中 2:靠右 3:靠左) Dispatch.put(font1, "Bold", "0"); // 字型粗体 Dispatch.put(font1, "Size", "12"); // 字型大小 Dispatch.put(font1, "Color", "0,0,0,0"); // 字型颜色(1,0,0,0=>紅色 // 1,1,0,0=>棕色) // Dispatch.put(font, "Italic", "1"); //字型斜体 Dispatch.call(selection, "TypeText", text); // 寫入标题內容 // 标题格行 Dispatch.call(selection, "TypeParagraph"); // 空一行段落 Dispatch.put(alignment, "Alignment", "3"); // (1:置中 2:靠右 3:靠左) Dispatch.call(selection, "MoveDown"); // 游标往下一行 // 取消选择(因为最后insert进去的文字会显示反白,所以要取消) Dispatch.call(selection, "MoveRight", new Variant(1), new Variant(1)); insertSplit(); } public void acceptAllChanges(){ Dispatch oWordBasic = (Dispatch) Dispatch.call(MsWordApp, "WordBasic").getDispatch(); Dispatch.call(oWordBasic, "AcceptAllChangesInDoc"); } /** * 保存word为html * @param inPath * @param fileName */ public void wordToHtml(String inPath,String fileName){ String htmlPath = inPath + fileName; Object doc1 = MsWordApp.getProperty("Documents").toDispatch(); Object doc2 = Dispatch.invoke( (Dispatch) doc1, "Open", Dispatch.Method, new Object[] { inPath + fileName + ".doc", new Variant(false), new Variant(true) }, new int[1]).toDispatch();// 打开word文件 Dispatch.invoke((Dispatch) doc2, "SaveAs", Dispatch.Method, new Object[] { htmlPath, new Variant(8) }, new int[1]); } /** * 另存档案 * * @param filename * 要储存的档案名称 * */ public void saveFileAs(String filename) { Dispatch.call(document, "SaveAs", filename); } /** * 列印word文件 * */ public void printFile() { Dispatch.call(document, "PrintOut"); } /** * 关闭文本內容(如果未开启word编辑时,释放ActiveX执行) * */ public void closeDocument() { // 0 = 沒有储存改变 // -1 = 有储存改变 // -2 = 提示储存改变 Dispatch.call(document, "Close", new Variant(0)); document = null; } /** * 关闭word(如果未开启word编辑时,释放ActiveX执行) * */ public void closeWord() { Dispatch.call(MsWordApp, "Quit"); MsWordApp = null; document = null; ComThread.Release(); } /** * 替换指定书签所在的值 * @param bookMarkKey * @param value */ public void replaceBookMark(String bookMarkKey,String value) { Dispatch activeDocument = MsWordApp.getProperty("ActiveDocument").toDispatch(); Dispatch bookMarks = MsWordApp.call(activeDocument, "Bookmarks").toDispatch(); boolean bookMarkExist1 = Dispatch.call(bookMarks, "Exists",bookMarkKey).getBoolean();; if (bookMarkExist1 == true) { System.out.println("已找到书签 " + bookMarkKey); Dispatch rangeItem = Dispatch.call(bookMarks, "Item", bookMarkKey).toDispatch(); Dispatch range = Dispatch.call(rangeItem, "Range").toDispatch(); String bookMarkValue = Dispatch.get(range, "Text").toString(); if (bookMarkValue != null) { Dispatch.put(range,"Text",new Variant(value)); } } else { System.out.println("指定的书签不存在 "); } } /** * 得到所有的书签 */ public Map<String,Dispatch> getBookMarkDispatchs(){ Map<String,Dispatch> bookMarkDispatchs = new HashMap<String,Dispatch>(); Dispatch activeDocument = MsWordApp.getProperty("ActiveDocument").toDispatch(); Dispatch bookMarks = MsWordApp.call(activeDocument, "Bookmarks").toDispatch(); int count =Integer.parseInt(Dispatch.get(bookMarks, "Count").toString()); for (int i = 0; i < count; i++) { Dispatch bookMark = Dispatch.call(bookMarks, "Item", new Variant(i + 1)).toDispatch(); bookMarkDispatchs.put(Dispatch.call(bookMark, "Name").toString(),bookMark); } return bookMarkDispatchs; } /** * 得到书签的值 * @param bookMark */ public String getBookMarkValue(Dispatch bookMark){ Dispatch range = Dispatch.call(bookMark, "Range").toDispatch(); return Dispatch.get(range, "text").toString(); } /** * 得到书签的第一个表格 * @param bookMark * @return */ public Dispatch getTableFromBookMark(Dispatch bookMark){ return this.getTableFromBookMark(bookMark, 1); } /** * 得到指定书签的第几个表格 * @param bookMark * @param tableIndex * @return */ public Dispatch getTableFromBookMark(Dispatch bookMark,int tableIndex){ Dispatch range = Dispatch.call(bookMark, "Range").toDispatch(); Dispatch tables=Dispatch.get(range, "Tables").toDispatch(); Dispatch table = Dispatch.call(tables, "Item", new Variant(tableIndex)).toDispatch(); return table; } /** * 根据书签得到 * @param bookMarkKey */ public String findBookMark(String bookMarkKey) { Dispatch activeDocument = MsWordApp.getProperty("ActiveDocument").toDispatch(); Dispatch bookMarks = MsWordApp.call(activeDocument, "Bookmarks").toDispatch(); boolean bookMarkExist = Dispatch.call(bookMarks, "Exists",bookMarkKey).getBoolean(); if (bookMarkExist == true) { System.out.println("已找到书签 " + bookMarkKey); Dispatch rangeItem = Dispatch.call(bookMarks, "Item", bookMarkKey).toDispatch(); Dispatch range = Dispatch.call(rangeItem, "Range").toDispatch(); String bookMarkValue = Dispatch.get(range, "Text").toString(); return bookMarkValue; } return null; } }
发表评论
-
HTML我帮您打造微信小程序web可视化开发者工具
2017-03-08 20:41 865HTML我帮您WEBAPP在线可 ... -
SQL在线查询设计器2
2013-02-20 09:20 1250在前人的基础上。进行了扩展。前端用extjs,后端有jav ... -
java与XML文件的读写
2008-04-28 10:49 982DOM 是 Document Object Model ... -
Tomcat 的数据库连接池设置与应用
2008-04-28 10:53 848Tomcat 的数据库连接池设置与应用 ... -
时间处理
2008-05-05 11:43 927首先写了一个公用的转换帮助类 package ... -
读写文件使用
2008-06-18 10:10 821package com.dzf.file; im ...
相关推荐
**Jacob使用说明终极吐血版** Jacob(Java和COM Bridge)是一个开源的Java库,它提供了在Java应用程序中调用Windows COM组件的能力。这个库使得Java开发者能够利用大量的已有的COM对象,比如Microsoft Office组件,...
《Jacob使用手册》 Jacob(Java COM Bridge)是一款强大的Java库,它允许Java应用程序与COM(Component Object Model)组件进行交互。在Windows环境下,许多功能丰富的应用程序和库都是基于COM技术构建的,如...
JACOB使用JNI技术,使Java程序可以直接调用COM接口和Win32 API,实现跨平台的交互。 1.2 **JACOB能做什么** JACOB主要应用于处理Microsoft Office文档,包括Word、Excel等。它可以读写Word文档,将Word文档转换成...
`documentConvertor_jacob使用_java_doc`这个主题涉及到使用Java编程语言和Jacob库来实现Office文档(如Word文档)与PDF之间的转换。Jacob(Java COM Bridge)是一个开源Java库,它允许Java应用程序通过COM接口与...
提供的三份文档《jacob操作文档.docx》、《jacob使用.docx》和《jacob介绍.docx》应该分别包含了Jacob的详细操作步骤、常见用法以及基础介绍。这些文档可以帮助开发者更好地理解和使用Jacob,例如,可能包含如何创建...
Put the appropriate DLL ...jacob for 32 bit windows is located in /x86. jacob for 64 bit windows is located in /64. jacob.jar包引入到项目里 64位系统的就用jacob-1.20-x64的 32位系统的就用jacob-1.20-x86的
此外,由于Jacob是基于JNI(Java Native Interface)的,所以在不同JVM版本和操作系统环境下,可能需要使用不同的Jacob版本。 总结,解决com.jacob:1.19在Maven中的下载问题,主要是手动下载jar文件并配置为系统...
Jacob使用`Variant`类来处理不同类型的参数和返回值。`Variant`能自动处理数据类型转换,适应COM接口的动态特性。 6. **事件处理**: Jacob允许Java代码订阅和处理COM对象的事件。通过实现`...
描述中提到的"jar及相应的dll文件",这是Jacob使用的关键。Jacob的jar文件包含了Java代码,而dll文件则是实际调用COM组件的本地库。在不同的JDK版本下,可能需要特定版本的dll文件以确保兼容性。例如,如果使用的是...
总的来说,"jacob-1.18-M2"是一个完整的Jacob使用包,包含所有必要的组件和文档,使得Java开发者能够方便地在Java程序中集成和使用Windows的COM组件,如进行文字转音频这样的任务。在Windows平台上进行Java开发时,...
总结来说,这个流程涵盖了从JSP表单数据生成Word,再到使用Word模板创建PDF,再由PDF生成图片,以及去除PDF水印的整个过程。`jacob`和`icepdf`作为核心工具,使得这个过程在Java环境中得以实现。为了实现这些功能,...
实例:Jacob使用多线程来处理COM通信,因此在调用任何COM方法之前,需要初始化一个`ComThread`实例,并设置其为单线程 apartment (STA) 模式。 ```java import com.jacob.com.ComThread; import ...
而 Jacob 提供了 Java 风格的编程接口,使用起来更为简便,所需了解的知识也较少。 **Jacob 使用步骤** 1. **初始化 COM 线程** 在使用 Jacob 之前,需要初始化 COM 多线程 apartment(MTA)。通过 `ComThread....
2. **初始化COM线程**:Jacob使用单线程 apartment (STA) 模型,因此在使用Jacob之前,需要初始化一个COM线程。这通常通过调用`ComThread.initMTA()`或`ComThread.initSTA()`完成,具体取决于你的应用程序需求。 3....
在处理多线程时,Jacob使用单线程模型,这意味着所有的COM交互必须在一个称为“COM线程”的特殊线程上进行。`ComThread.InitMTA()`或`ComThread.InitSTA()`用于初始化这个线程,而`ComThread.Release()`用于释放资源...
此外,由于Jacob使用JNI,还需要配置系统环境变量,将Jacob的dll文件路径添加到系统PATH环境变量中,确保Java运行时能够找到相应的本地库。 三、基本使用 1. 导入Jacob库:在Java代码中,需要导入`...
4. **处理参数和返回值**:Jacob使用`Dispatch`类来处理参数和返回值,它支持多种数据类型,包括字符串、整数、浮点数等。你可以使用`Dispatch.call`或`Dispatch.get`方法来调用方法或获取属性。 5. **错误处理**:...
3. 初始化COM线程:Jacob使用单线程模式与COM交互,因此需要通过`ComThread.init()`方法初始化一个COM线程。 4. 创建ActiveXComponent:使用`ActiveXComponent`来实例化你想要调用的COM对象,如`new ...
**Jacob使用示例** 以下是一个使用Jacob创建Excel工作簿的基本示例: ```java import com.jacob.activeX.ActiveXComponent; import com.jacob.com.Dispatch; public class JacobExcelExample { public static ...