1. import com.jacob.activeX.ActiveXComponent;  
  2. import com.jacob.com.Dispatch;  
  3. import com.jacob.com.Variant;  
  4.   
  5. /** 
  6.  * jacob操作MSword类 
  7.  * @author  
  8.  */  
  9.   
  10. public class WordBean {  
  11. // word文档  
  12. private Dispatch doc;  
  13.       
  14. // word运行程序对象  
  15. private ActiveXComponent word;  
  16.   
  17. // 所有word文档集合  
  18. private Dispatch documents;  
  19.   
  20. // 选定的范围或插入点  
  21. private Dispatch selection;  
  22.   
  23. private boolean saveOnExit = true;  
  24.   
  25. public WordBean()throws Exception{  
  26. if (word == null) {  
  27. new ActiveXComponent("Word.Application");  
  28. "Visible", new Variant(false));    //不可见打开word           
  29. "AutomationSecurity", new Variant(3)); //禁用宏  
  30.         }  
  31. if (documents == null)  
  32. "Documents").toDispatch();  
  33.     }  
  34.       
  35. /** 
  36.      * 设置退出时参数 
  37.      *  
  38.      * @param saveOnExit 
  39.      *            boolean true-退出时保存文件,false-退出时不保存文件 
  40.      */  
  41. public void setSaveOnExit(boolean saveOnExit) {  
  42. this.saveOnExit = saveOnExit;  
  43.     }  
  44.   
  45. /** 
  46.      * 创建一个新的word文档 
  47.      *  
  48.      */  
  49. public void createNewDocument() {  
  50. "Add").toDispatch();  
  51. "Selection").toDispatch();  
  52.     }  
  53.   
  54. /** 
  55.      * 打开一个已存在的文档 
  56.      *  
  57.      * @param docPath 
  58.      */  
  59. public void openDocument(String docPath) {  
  60.         closeDocument();  
  61. "Open", docPath).toDispatch();  
  62. "Selection").toDispatch();  
  63.     }  
  64.       
  65. /** 
  66.      * 打开一个保护文档, 
  67.      * @param docPath-文件全名 
  68.      * @param pwd-密码 
  69.      */  
  70. public void openDocumentOnlyRead(String docPath, String pwd)throws Exception {  
  71.         closeDocument();  
  72. //      doc = Dispatch.invoke(documents, "Open", Dispatch.Method,   
  73. //              new Object[]{docPath, new Variant(false), new Variant(true), new Variant(true), pwd},   
  74. //              new int[1]).toDispatch();//打开word文件   
  75. "Open", new Object[]{docPath, new Variant(false),   
  76. new Variant(true), new Variant(true), pwd, "", new Variant(false)}).toDispatch();  
  77. "Selection").toDispatch();  
  78.     }  
  79.       
  80. public void openDocument(String docPath, String pwd)throws Exception {  
  81.         closeDocument();          
  82. "Open", new Object[]{docPath, new Variant(false),   
  83. new Variant(false), new Variant(true), pwd}).toDispatch();  
  84. "Selection").toDispatch();  
  85.     }  
  86.   
  87. /** 
  88.      * 把选定的内容或插入点向上移动 
  89.      *  
  90.      * @param pos 
  91.      *            移动的距离 
  92.      */  
  93. public void moveUp(int pos) {  
  94. if (selection == null)  
  95. "Selection").toDispatch();  
  96. for (int i = 0; i < pos; i++)  
  97. "MoveUp");  
  98.   
  99.     }  
  100.   
  101. /** 
  102.      * 把选定的内容或者插入点向下移动 
  103.      *  
  104.      * @param pos 
  105.      *            移动的距离 
  106.      */  
  107. public void moveDown(int pos) {  
  108. if (selection == null)  
  109. "Selection").toDispatch();  
  110. for (int i = 0; i < pos; i++)  
  111. "MoveDown");  
  112.     }  
  113.   
  114. /** 
  115.      * 把选定的内容或者插入点向左移动 
  116.      *  
  117.      * @param pos 
  118.      *            移动的距离 
  119.      */  
  120. public void moveLeft(int pos) {  
  121. if (selection == null)  
  122. "Selection").toDispatch();  
  123. for (int i = 0; i < pos; i++) {  
  124. "MoveLeft");  
  125.         }  
  126.     }  
  127.   
  128. /** 
  129.      * 把选定的内容或者插入点向右移动 
  130.      *  
  131.      * @param pos 
  132.      *            移动的距离 
  133.      */  
  134. public void moveRight(int pos) {  
  135. if (selection == null)  
  136. "Selection").toDispatch();  
  137. for (int i = 0; i < pos; i++)  
  138. "MoveRight");  
  139.     }  
  140.   
  141. /** 
  142.      * 把插入点移动到文件首位置 
  143.      *  
  144.      */  
  145. public void moveStart() {  
  146. if (selection == null)  
  147. "Selection").toDispatch();  
  148. "HomeKey", new Variant(6));  
  149.     }  
  150.   
  151. /** 
  152.      * 从选定内容或插入点开始查找文本 
  153.      *  
  154.      * @param toFindText 
  155.      *            要查找的文本 
  156.      * @return boolean true-查找到并选中该文本,false-未查找到文本 
  157.      */  
  158. @SuppressWarnings("static-access")  
  159. public boolean find(String toFindText) {  
  160. if (toFindText == null || toFindText.equals(""))  
  161. return false;  
  162. // 从selection所在位置开始查询  
  163. "Find").toDispatch();  
  164. // 设置要查找的内容  
  165. "Text", toFindText);  
  166. // 向前查找  
  167. "Forward", "True");  
  168. // 设置格式  
  169. "Format", "True");  
  170. // 大小写匹配  
  171. "MatchCase", "True");  
  172. // 全字匹配  
  173. "MatchWholeWord", "True");  
  174. // 查找并选中  
  175. return Dispatch.call(find, "Execute").getBoolean();  
  176.     }  
  177.   
  178. /** 
  179.      * 把选定选定内容设定为替换文本 
  180.      *  
  181.      * @param toFindText 
  182.      *            查找字符串 
  183.      * @param newText 
  184.      *            要替换的内容 
  185.      * @return 
  186.      */  
  187. public boolean replaceText(String toFindText, String newText) {  
  188. if (!find(toFindText))  
  189. return false;  
  190. "Text", newText);  
  191. return true;  
  192.     }  
  193.   
  194. /** 
  195.      * 全局替换文本 
  196.      *  
  197.      * @param toFindText 
  198.      *            查找字符串 
  199.      * @param newText 
  200.      *            要替换的内容 
  201.      */  
  202. public void replaceAllText(String toFindText, String newText) {  
  203. while (find(toFindText)) {  
  204. "Text", newText);  
  205. "MoveRight");  
  206.         }  
  207.     }  
  208.   
  209. /** 
  210.      * 在当前插入点插入字符串 
  211.      *  
  212.      * @param newText 
  213.      *            要插入的新字符串 
  214.      */  
  215. public void insertText(String newText) {  
  216. "Text", newText);  
  217.     }  
  218.   
  219. /** 
  220.      *  
  221.      * @param toFindText 
  222.      *            要查找的字符串 
  223.      * @param imagePath 
  224.      *            图片路径 
  225.      * @return 
  226.      */  
  227. public boolean replaceImage(String toFindText, String imagePath) {  
  228. if (!find(toFindText))  
  229. return false;  
  230. "InLineShapes").toDispatch(),  
  231. "AddPicture", imagePath);  
  232. return true;  
  233.     }  
  234.   
  235. /** 
  236.      * 全局替换图片 
  237.      *  
  238.      * @param toFindText 
  239.      *            查找字符串 
  240.      * @param imagePath 
  241.      *            图片路径 
  242.      */  
  243. public void replaceAllImage(String toFindText, String imagePath) {  
  244. while (find(toFindText)) {  
  245. "InLineShapes").toDispatch(),  
  246. "AddPicture", imagePath);  
  247. "MoveRight");  
  248.         }  
  249.     }  
  250.   
  251. /** 
  252.      * 在当前插入点插入图片 
  253.      *  
  254.      * @param imagePath 
  255.      *            图片路径 
  256.      */  
  257. public void insertImage(String imagePath) {  
  258. "InLineShapes").toDispatch(),  
  259. "AddPicture", imagePath);  
  260.     }  
  261.   
  262. /** 
  263.      * 合并单元格 
  264.      *  
  265.      * @param tableIndex 
  266.      * @param fstCellRowIdx 
  267.      * @param fstCellColIdx 
  268.      * @param secCellRowIdx 
  269.      * @param secCellColIdx 
  270.      */  
  271. public void mergeCell(int tableIndex, int fstCellRowIdx, int fstCellColIdx,  
  272. int secCellRowIdx, int secCellColIdx) {  
  273. // 所有表格  
  274. "Tables").toDispatch();  
  275. // 要填充的表格  
  276. "Item", new Variant(tableIndex))  
  277.                 .toDispatch();  
  278. "Cell",  
  279. new Variant(fstCellRowIdx), new Variant(fstCellColIdx))  
  280.                 .toDispatch();  
  281. "Cell",  
  282. new Variant(secCellRowIdx), new Variant(secCellColIdx))  
  283.                 .toDispatch();  
  284. "Merge", secCell);  
  285.     }  
  286.   
  287. /** 
  288.      * 在指定的单元格里填写数据 
  289.      *  
  290.      * @param tableIndex 
  291.      * @param cellRowIdx 
  292.      * @param cellColIdx 
  293.      * @param txt 
  294.      */  
  295. public void putTxtToCell(int tableIndex, int cellRowIdx, int cellColIdx,  
  296.             String txt) {  
  297. // 所有表格  
  298. "Tables").toDispatch();  
  299. // 要填充的表格  
  300. "Item", new Variant(tableIndex))  
  301.                 .toDispatch();  
  302. "Cell", new Variant(cellRowIdx),  
  303. new Variant(cellColIdx)).toDispatch();  
  304. "Select");  
  305. "Text", txt);         
  306.     }  
  307.       
  308. /** 
  309.      * 获得指定的单元格里数据 
  310.      *  
  311.      * @param tableIndex 
  312.      * @param cellRowIdx 
  313.      * @param cellColIdx 
  314.      * @return 
  315.      */   
  316. public String getTxtFromCell(int tableIndex, int cellRowIdx, int cellColIdx) {  
  317. // 所有表格  
  318. "Tables").toDispatch();  
  319. // 要填充的表格  
  320. "Item", new Variant(tableIndex))  
  321.                 .toDispatch();  
  322. "Cell", new Variant(cellRowIdx),  
  323. new Variant(cellColIdx)).toDispatch();  
  324. "Select");    
  325. "";      
  326. "Text").toString();  
  327. 0, ret.length()-1); //去掉最后的回车符;  
  328. return ret;  
  329.     }  
  330.   
  331. /** 
  332.      * 在当前文档拷贝剪贴板数据 
  333.      * @param pos 
  334.      */  
  335. public void pasteExcelSheet(String pos) {  
  336.         moveStart();  
  337. if (this.find(pos)) {  
  338. "Range").toDispatch();  
  339. "Paste");  
  340.         }  
  341.     }  
  342.   
  343. /** 
  344.      * 在当前文档指定的位置拷贝表格 
  345.      *  
  346.      * @param pos 
  347.      *            当前文档指定的位置 
  348.      * @param tableIndex 
  349.      *            被拷贝的表格在word文档中所处的位置 
  350.      */  
  351. public void copyTable(String pos, int tableIndex) {  
  352. // 所有表格  
  353. "Tables").toDispatch();  
  354. // 要填充的表格  
  355. "Item", new Variant(tableIndex))  
  356.                 .toDispatch();  
  357. "Range").toDispatch();  
  358. "Copy");  
  359. if (this.find(pos)) {  
  360. "Range").toDispatch();  
  361. "Paste");  
  362.         }  
  363.     }  
  364.   
  365. /** 
  366.      * 在当前文档指定的位置拷贝来自另一个文档中的表格 
  367.      *  
  368.      * @param anotherDocPath 
  369.      *            另一个文档的磁盘路径 
  370.      * @param tableIndex 
  371.      *            被拷贝的表格在另一格文档中的位置 
  372.      * @param pos 
  373.      *            当前文档指定的位置 
  374.      */  
  375. public void copyTableFromAnotherDoc(String anotherDocPath, int tableIndex,  
  376.             String pos) {  
  377. null;  
  378. try {  
  379. "Open", anotherDocPath)  
  380.                     .toDispatch();  
  381. // 所有表格  
  382. "Tables").toDispatch();  
  383. // 要填充的表格  
  384. "Item",  
  385. new Variant(tableIndex)).toDispatch();  
  386. "Range").toDispatch();  
  387. "Copy");  
  388. if (this.find(pos)) {  
  389. "Range")  
  390.                         .toDispatch();  
  391. "Paste");  
  392.             }  
  393. catch (Exception e) {  
  394.             e.printStackTrace();  
  395. finally {  
  396. if (doc2 != null) {  
  397. "Close", new Variant(saveOnExit));  
  398. null;  
  399.             }  
  400.         }  
  401.     }  
  402.   
  403. /** 
  404.      * 在当前文档指定的位置拷贝来自另一个文档中的图片 
  405.      *  
  406.      * @param anotherDocPath 另一个文档的磁盘路径 
  407.      * @param shapeIndex 被拷贝的图片在另一格文档中的位置 
  408.      * @param pos 当前文档指定的位置 
  409.      */  
  410. public void copyImageFromAnotherDoc(String anotherDocPath, int shapeIndex,  
  411.             String pos) {  
  412. null;  
  413. try {  
  414. "Open", anotherDocPath)  
  415.                     .toDispatch();  
  416. "InLineShapes").toDispatch();  
  417. "Item",  
  418. new Variant(shapeIndex)).toDispatch();  
  419. "Range").toDispatch();  
  420. "Copy");  
  421. if (this.find(pos)) {  
  422. "Range")  
  423.                         .toDispatch();  
  424. "Paste");  
  425.             }  
  426. catch (Exception e) {  
  427.             e.printStackTrace();  
  428. finally {  
  429. if (doc2 != null) {  
  430. "Close", new Variant(saveOnExit));  
  431. null;  
  432.             }  
  433.         }  
  434.     }  
  435.   
  436. /** 
  437.      * 创建表格 
  438.      *  
  439.      * @param pos 
  440.      *            位置 
  441.      * @param cols 
  442.      *            列数 
  443.      * @param rows 
  444.      *            行数 
  445.      */  
  446. public void createTable(String pos, int numCols, int numRows) {  
  447. if (find(pos)) {  
  448. "Tables").toDispatch();  
  449. "Range").toDispatch();  
  450. @SuppressWarnings("unused")  
  451. "Add", range,  
  452. new Variant(numRows), new Variant(numCols)).toDispatch();  
  453. "MoveRight");  
  454. else {  
  455. "Tables").toDispatch();  
  456. "Range").toDispatch();  
  457. @SuppressWarnings("unused")  
  458. "Add", range,  
  459. new Variant(numRows), new Variant(numCols)).toDispatch();  
  460. "MoveRight");  
  461.         }  
  462.     }  
  463.   
  464. /** 
  465.      * 在指定行前面增加行 
  466.      *  
  467.      * @param tableIndex 
  468.      *            word文件中的第N张表(从1开始) 
  469.      * @param rowIndex 
  470.      *            指定行的序号(从1开始) 
  471.      */  
  472. public void addTableRow(int tableIndex, int rowIndex) {  
  473. // 所有表格  
  474. "Tables").toDispatch();  
  475. // 要填充的表格  
  476. "Item", new Variant(tableIndex))  
  477.                 .toDispatch();  
  478. // 表格的所有行  
  479. "Rows").toDispatch();  
  480. "Item", new Variant(rowIndex))  
  481.                 .toDispatch();  
  482. "Add", new Variant(row));  
  483.     }  
  484.   
  485. /** 
  486.      * 在第1行前增加一行 
  487.      *  
  488.      * @param tableIndex 
  489.      *  word文档中的第N张表(从1开始) 
  490.      */  
  491. public void addFirstTableRow(int tableIndex) {  
  492. // 所有表格  
  493. "Tables").toDispatch();  
  494. // 要填充的表格  
  495. "Item", new Variant(tableIndex))  
  496.                 .toDispatch();  
  497. // 表格的所有行  
  498. "Rows").toDispatch();  
  499. "First").toDispatch();  
  500. "Add", new Variant(row));  
  501.     }  
  502.   
  503. /** 
  504.      * 在最后1行前增加一行 
  505.      *  
  506.      * @param tableIndex 
  507.      *            word文档中的第N张表(从1开始) 
  508.      */  
  509. public void addLastTableRow(int tableIndex) {  
  510. // 所有表格  
  511. "Tables").toDispatch();  
  512. // 要填充的表格  
  513. "Item", new Variant(tableIndex))  
  514.                 .toDispatch();  
  515. // 表格的所有行  
  516. "Rows").toDispatch();  
  517. "Last").toDispatch();  
  518. "Add", new Variant(row));  
  519.     }  
  520.   
  521. /** 
  522.      * 增加一行 
  523.      *  
  524.      * @param tableIndex 
  525.      *            word文档中的第N张表(从1开始) 
  526.      */  
  527. public void addRow(int tableIndex) {  
  528. "Tables").toDispatch();  
  529. // 要填充的表格  
  530. "Item", new Variant(tableIndex))  
  531.                 .toDispatch();  
  532. // 表格的所有行  
  533. "Rows").toDispatch();  
  534. "Add");  
  535.     }  
  536.   
  537. /** 
  538.      * 增加一列 
  539.      *  
  540.      * @param tableIndex 
  541.      *            word文档中的第N张表(从1开始) 
  542.      */  
  543. public void addCol(int tableIndex) {  
  544. // 所有表格  
  545. "Tables").toDispatch();  
  546. // 要填充的表格  
  547. "Item", new Variant(tableIndex))  
  548.                 .toDispatch();  
  549. // 表格的所有行  
  550. "Columns").toDispatch();  
  551. "Add").toDispatch();  
  552. "AutoFit");  
  553.     }  
  554.   
  555. /** 
  556.      * 在指定列前面增加表格的列 
  557.      *  
  558.      * @param tableIndex 
  559.      *            word文档中的第N张表(从1开始) 
  560.      * @param colIndex 
  561.      *            制定列的序号 (从1开始) 
  562.      */  
  563. public void addTableCol(int tableIndex, int colIndex) {  
  564. // 所有表格  
  565. "Tables").toDispatch();  
  566. // 要填充的表格  
  567. "Item", new Variant(tableIndex))  
  568.                 .toDispatch();  
  569. // 表格的所有行  
  570. "Columns").toDispatch();  
  571. "Count"));  
  572. "Item", new Variant(colIndex))  
  573.                 .toDispatch();  
  574. // Dispatch col = Dispatch.get(cols, "First").toDispatch();  
  575. "Add", col).toDispatch();  
  576. "AutoFit");  
  577.     }  
  578.   
  579. /** 
  580.      * 在第1列前增加一列 
  581.      *  
  582.      * @param tableIndex 
  583.      *            word文档中的第N张表(从1开始) 
  584.      */  
  585. public void addFirstTableCol(int tableIndex) {  
  586. "Tables").toDispatch();  
  587. // 要填充的表格  
  588. "Item", new Variant(tableIndex))  
  589.                 .toDispatch();  
  590. // 表格的所有行  
  591. "Columns").toDispatch();  
  592. "First").toDispatch();  
  593. "Add", col).toDispatch();  
  594. "AutoFit");  
  595.     }  
  596.   
  597. /** 
  598.      * 在最后一列前增加一列 
  599.      *  
  600.      * @param tableIndex 
  601.      *            word文档中的第N张表(从1开始) 
  602.      */  
  603. public void addLastTableCol(int tableIndex) {  
  604. "Tables").toDispatch();  
  605. // 要填充的表格  
  606. "Item", new Variant(tableIndex))  
  607.                 .toDispatch();  
  608. // 表格的所有行  
  609. "Columns").toDispatch();  
  610. "Last").toDispatch();  
  611. "Add", col).toDispatch();  
  612. "AutoFit");  
  613.     }  
  614.   
  615. /** 
  616.      * 自动调整表格 
  617.      * 
  618.      */  
  619. @SuppressWarnings("deprecation")  
  620. public void autoFitTable() {  
  621. "Tables").toDispatch();  
  622. int count = Dispatch.get(tables, "Count").toInt();  
  623. for (int i = 0; i < count; i++) {  
  624. "Item", new Variant(i + 1))  
  625.                     .toDispatch();  
  626. "Columns").toDispatch();  
  627. "AutoFit");  
  628.         }  
  629.     }  
  630.   
  631. /** 
  632.      * 调用word里的宏以调整表格的宽度,其中宏保存在document下 
  633.      * 
  634.      */  
  635. @SuppressWarnings("deprecation")  
  636. public void callWordMacro() {  
  637. "Tables").toDispatch();  
  638. int count = Dispatch.get(tables, "Count").toInt();  
  639. new Variant("Normal.NewMacros.tableFit");  
  640. @SuppressWarnings("unused")  
  641. new Variant("param1");  
  642. @SuppressWarnings("unused")  
  643. new Variant[] { vMacroName };  
  644. for (int i = 0; i < count; i++) {  
  645. "Item", new Variant(i + 1))  
  646.                     .toDispatch();  
  647. "Select");  
  648. "Run", "tableFitContent");  
  649.         }  
  650.     }  
  651.   
  652. /** 
  653.      * 设置当前选定内容的字体 
  654.      *  
  655.      * @param boldSize 
  656.      * @param italicSize 
  657.      * @param underLineSize 
  658.      *            下划线 
  659.      * @param colorSize 
  660.      *            字体颜色 
  661.      * @param size 
  662.      *            字体大小 
  663.      * @param name 
  664.      *            字体名称 
  665.      */  
  666. public void setFont(boolean bold, boolean italic, boolean underLine,  
  667.             String colorSize, String size, String name) {  
  668. "Font").toDispatch();  
  669. "Name", new Variant(name));  
  670. "Bold", new Variant(bold));  
  671. "Italic", new Variant(italic));  
  672. "Underline", new Variant(underLine));  
  673. "Color", colorSize);  
  674. "Size", size);  
  675.     }  
  676.       
  677. /** 
  678.      * 设置单元格被选中 
  679.      *  
  680.      * @param tableIndex 
  681.      * @param cellRowIdx 
  682.      * @param cellColIdx 
  683.      */  
  684. public void setTableCellSelected(int tableIndex, int cellRowIdx, int cellColIdx){  
  685. "Tables").toDispatch();  
  686. "Item", new Variant(tableIndex))  
  687.                 .toDispatch();  
  688. "Cell", new Variant(cellRowIdx),  
  689. new Variant(cellColIdx)).toDispatch();  
  690. "Select");  
  691.     }  
  692.       
  693. /** 
  694.      * 设置选定单元格的垂直对起方式, 请使用setTableCellSelected选中一个单元格 
  695.      * @param align 0-顶端, 1-居中, 3-底端 
  696.      */  
  697. public void setCellVerticalAlign(int verticalAlign){  
  698. "Cells").toDispatch();       
  699. "VerticalAlignment", new Variant(verticalAlign));         
  700.     }  
  701.       
  702. /** 
  703.      * 设置当前文档中所有表格水平居中方式及其它一些格式,用在将word文件转化为html中,针对申报表 
  704.      */  
  705. @SuppressWarnings("deprecation")  
  706. public void setApplyTableFormat(){  
  707. "Tables").toDispatch();  
  708. int tabCount = Integer.valueOf(Dispatch.get(tables, "Count").toString());   //System.out.println(tabCount);  
  709. "*******************************************************");  
  710. for(int i=1; i<=tabCount; i++){        
  711. "Item", new Variant(i)).toDispatch();  
  712. "Rows").toDispatch();  
  713.               
  714. if(i==1){  
  715. "Alignment", new Variant(2));    //1-居中,2-Right  
  716. continue ;  
  717.             }  
  718. "Alignment", new Variant(1));    //1-居中            
  719. "AutoFitBehavior", new Variant(1));//设置自动调整表格方式,1-根据窗口自动调整  
  720. "PreferredWidthType", new Variant(1));  
  721. "PreferredWidth", new Variant(700));              
  722. "HeightRule").toString());  
  723. "HeightRule", new Variant(1));   //0-自动wdRowHeightAuto,1-最小值wdRowHeightAtLeast, 2-固定wdRowHeightExactly     
  724. "Height", new Variant(0.04*28.35));            
  725. //int oldAlign = Integer.valueOf(Dispatch.get(rows, "Alignment").toString());     
  726. //System.out.println("Algin:" + oldAlign);  
  727.         }     
  728.     }  
  729.       
  730. /** 
  731.      * 设置段落格式 
  732.      *  
  733.      * @param alignment  
  734.      *          0-左对齐, 1-右对齐, 2-右对齐, 3-两端对齐, 4-分散对齐 
  735.      * @param lineSpaceingRule    
  736.      * @param lineUnitBefore      
  737.      * @param lineUnitAfter   
  738.      * @param characterUnitFirstLineIndent 
  739.      */  
  740. public void setParagraphsProperties(int alignment, int lineSpaceingRule,  
  741. int lineUnitBefore, int lineUnitAfter, int characterUnitFirstLineIndent){  
  742. "Paragraphs").toDispatch();     
  743. "Alignment", new Variant(alignment));              //对齐方式            
  744. "LineSpacingRule", new Variant(lineSpaceingRule)); //行距  
  745. "LineUnitBefore", new Variant(lineUnitBefore));    //段前  
  746. "LineUnitAfter", new Variant(lineUnitAfter));      //段后      
  747. "CharacterUnitFirstLineIndent",   
  748. new Variant(characterUnitFirstLineIndent));                         //首行缩进字符数  
  749.     }     
  750.       
  751. /** 
  752.      * 设置当前段落格式, 使用前,请先选中段落 
  753.      */  
  754. public void getParagraphsProperties(){  
  755. "Paragraphs").toDispatch();         
  756. "LineSpacingRule").toString();    //行距  
  757. "Alignment").toString();         //对齐方式    
  758. "LineUnitBefore").toString();    //段前行数  
  759. "LineUnitAfter").toString();     //段后行数  
  760. "FirstLineIndent").toString();   //首行缩进  
  761. "CharacterUnitFirstLineIndent").toString();  //首行缩进字符数  
  762.     }  
  763.   
  764. /** 
  765.      * 文件保存或另存为 
  766.      *  
  767.      * @param savePath 
  768.      *            保存或另存为路径 
  769.      */  
  770. public void save(String savePath) {  
  771. "WordBasic").getDispatch(),  
  772. "FileSaveAs", savePath);  
  773.     }     
  774.       
  775. /** 
  776.      * 文件保存为html格式 
  777.      *  
  778.      * @param savePath 
  779.      * @param htmlPath 
  780.      */  
  781. public void saveAsHtml(String htmlPath){  
  782. "SaveAs", Dispatch.Method,   
  783. new Object[]{htmlPath, new Variant(8)}, new int[1]);   
  784.     }  
  785.   
  786. /** 
  787.      * 关闭文档 
  788.      *@param val 0不保存修改 -1 保存修改 -2 提示是否保存修改 
  789.      */  
  790. public void closeDocument(int val) {  
  791. "Close", new Variant(val));  
  792. null;  
  793.     }  
  794.   
  795. /** 
  796.      * 关闭当前word文档 
  797.      *  
  798.      */  
  799. public void closeDocument() {  
  800. if (doc != null) {  
  801. "Save");  
  802. "Close", new Variant(saveOnExit));  
  803. null;  
  804.         }  
  805.     }  
  806.       
  807. public void closeDocumentWithoutSave(){  
  808. if (doc != null) {            
  809. "Close", new Variant(false));  
  810. null;  
  811.         }  
  812.     }  
  813.   
  814. /** 
  815.      * 关闭全部应用 
  816.      *  
  817.      */  
  818. public void close() {  
  819. //closeDocument();  
  820. if (word != null) {  
  821. "Quit");  
  822. null;  
  823.         }  
  824. null;  
  825. null;  
  826.     }  
  827.       
  828. /** 
  829.      * 打印当前word文档 
  830.      *  
  831.      */  
  832. public void printFile() {  
  833. if (doc != null) {  
  834. "PrintOut");  
  835.         }  
  836.     }  
  837.       
  838. /** 
  839.      * 保护当前档,如果不存在, 使用expression.Protect(Type, NoReset, Password) 
  840.      *  
  841.      * @param pwd 
  842.      * WdProtectionType 可以是下列 WdProtectionType 常量之一:  
  843.      *      1-wdAllowOnlyComments, 2-wdAllowOnlyFormFields, 0-wdAllowOnlyRevisions,  
  844.      *      -1-wdNoProtection, 3-wdAllowOnlyReading 
  845.      *  
  846.      * 使用参照 main1() 
  847.      */  
  848. public void protectedWord(String pwd){  
  849. "ProtectionType").toString();  
  850. if(protectionType.equals("-1")){      
  851. "Protect", new Variant(3), new Variant(true), pwd);  
  852.         }     
  853.     }  
  854.       
  855. /** 
  856.      * 解除文档保护,如果存在 
  857.      * @param pwd 
  858.      * WdProtectionType 常量之一(Long 类型,只读): 
  859.      *      1-wdAllowOnlyComments,2-wdAllowOnlyFormFields、 
  860.      *      0-wdAllowOnlyRevisions,-1-wdNoProtection, 3-wdAllowOnlyReading 
  861.      *  
  862.      *      使用参照 main1() 
  863.      */  
  864. public void unProtectedWord(String pwd){  
  865. "ProtectionType").toString();  
  866. if(protectionType.equals("3")){   
  867. "Unprotect", pwd);  
  868.         }  
  869.     }  
  870.       
  871. /** 
  872.      * 设置word文档安全级别 
  873.      * @param value 
  874.      *      1-msoAutomationSecurityByUI  使用“安全”对话框指定的安全设置。 
  875.      *      2-msoAutomationSecurityForceDisable  在程序打开的所有文件中禁用所有宏,而不显示任何安全提醒。 
  876.      *      3-msoAutomationSecurityLow  启用所有宏,这是启动应用程序时的默认值。 
  877.      */  
  878. public void setAutomationSecurity(int value){  
  879. "AutomationSecurity", new Variant(value));   
  880.     }  
  881.       
  882. /** 
  883.      * 读取文档中第paragraphsIndex段文字的内容; 
  884.      * @param paragraphsIndex 
  885.      * @return 
  886.      */  
  887. public String getParagraphs(int paragraphsIndex){  
  888. "";  
  889. "Paragraphs").toDispatch(); // 所有段落  
  890. int paragraphCount = Dispatch.get(paragraphs, "Count").getInt();            // 一共的段落数  
  891. null;  
  892. null;  
  893. if(paragraphCount > paragraphsIndex && 0 < paragraphsIndex){    
  894. "Item", new Variant(paragraphsIndex)).toDispatch();  
  895. "Range").toDispatch();  
  896. "Text").toString();  
  897.         }     
  898. return ret;  
  899.     }  
  900.       
  901. /** 
  902.      * 设置页眉文字 
  903.      * @param cont 
  904.      * @return 
  905.      *  
  906.      * Sub AddHeaderText() 
  907.      * '设置页眉或页脚中的文字 
  908.      * '由 Headers、Footers 和 HeaderFooter 属性返回 HeaderFooter 对象。下列示例更改当前页眉中的文字。 
  909.      *  With ActiveDocument.ActiveWindow.View 
  910.      *      .SeekView = wdSeekCurrentPageHeader 
  911.      *      Selection.HeaderFooter.Range.Text = "Header text" 
  912.      *      .SeekView = wdSeekMainDocument 
  913.      *  End With 
  914.      * End Sub 
  915.      */  
  916. public void setHeaderContent(String cont){  
  917. "ActiveWindow").toDispatch();  
  918. "View").toDispatch();  
  919. //Dispatch seekView = Dispatch.get(view, "SeekView").toDispatch();  
  920. "SeekView", new Variant(9));         //wdSeekCurrentPageHeader-9  
  921.           
  922. "HeaderFooter").toDispatch();  
  923. "Range").toDispatch();  
  924. "Text", new Variant(cont));   
  925. //String content = Dispatch.get(range, "Text").toString();  
  926. "Font").toDispatch();  
  927.           
  928. "Name", new Variant("楷体_GB2312"));  
  929. "Bold", new Variant(true));  
  930. //Dispatch.put(font, "Italic", new Variant(true));  
  931. //Dispatch.put(font, "Underline", new Variant(true));  
  932. "Size", 9);  
  933.           
  934. "SeekView", new Variant(0));         //wdSeekMainDocument-0恢复视图;  
  935.     }  
  936.       
  937. public static void main(String[] args)throws Exception{  
  938. new WordBean();   
  939. "D:/竞价平台.doc");  
  940.           
  941. "*****************88设置页眉内容11111111111111111!");  
  942. //word.unProtectedWord("1qaz");  
  943. //word.protectedWord("123");  
  944. 3));  
  945.         word.closeDocument();  
  946.         word.close();  
  947.     }  
  948. }