java應用Jsoup組件生成word文檔。本站提示廣大學習愛好者:(java應用Jsoup組件生成word文檔)文章只能為提供參考,不一定能成為您想要的結果。以下是java應用Jsoup組件生成word文檔正文
先應用jsoup將獲得的html代碼“尺度化”(Jsoup.parse(String html))辦法,然後應用FileWiter將此html內容寫到當地的template.doc文件中,此時假如文章中包括圖片的話,template.doc就會依附你的當地圖片文件途徑,假如你將圖片更改一個稱號或許將途徑更改,再翻開這個template.doc,圖片就會顯示不出來(湧現一個叉叉)。為懂得決此成績,應用jsoup組件輪回遍歷html文檔的內容,將img元素調換成${image_自增值}的標識,掏出img元素中的src屬性,再以鍵值對的方法存儲起來,例如:
Map<Integer,String> imgMap = new HashMap<Integer,String>();
imgMap.put(1,”D:\lucene.png”);
此時你的html內容會釀成以下格局:(舉個示例)
<html>
<head></head>
<body>
<p>測試新聞1</p>
<p>${image_1}<p>
<table>
<tr>
<td> <td>
</tr>
</table>
<p>測試新聞2</p>
<a href=http://www.jb51.net><p>${image_2}</p></a>
<p>測試新聞3</p>
</body>
</html>
保留到當地文件今後,應用MSOfficeGeneratorUtils類(對象類詳見上面,基於開源組件Jacob)翻開你保留的這個template.doc,挪用replaceText2Image,將下面代碼的圖片標識調換為圖片,如許就清除了當地圖片途徑的成績。 然後再挪用copy辦法,復制整篇文檔,封閉template.doc文件,新建一個doc文件(createDocument),挪用 paste辦法粘貼你剛復制的template.doc裡的內容,保留。根本上就ok了。
關於copy全部word文檔的內容,也會湧現一個隱式成績。就是當復制的內容太多時,封閉word法式的時刻,談判出一個對話框,問你能否將復制的數據運用於其它的法式。關於這個成績處理辦法很簡略,你可以在挪用 quit(加入word法式辦法)之前,新建一篇文檔,輸出一行字,然後挪用 copy辦法,關於復制的數據比擬少時,封閉word法式時,它不會提醒你的。見以下代碼
//復制一個內容比擬少的*.doc文檔,避免在封閉word法式時提醒有年夜量的copy內容在內存中,能否運用於其它法式對話框,
msOfficeUtils.createNewDocument();
msOfficeUtils.insertText("測試新聞");
msOfficeUtils.copy();
msOfficeUtils.close();
msOfficeUtils.quit();
Jacob在sourceforge上的鏈接
Jsoup官網
MsOfficeGeneratorUtils
package com.topstar.test;
import java.io.File;
import java.io.IOException;
import java.util.List;
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
/**
* 應用JACOB對Microsoft Office Word 停止相干操作
*
* @author xiaowu
* @category topstar
* @version 1.0
* @since 2011-12-5
*/
public class MSOfficeGeneratorUtils {
/**
* Microsoft Office Word 法式對象
*/
private ActiveXComponent word = null;
/**
* Word 運動文檔對象
*/
private Dispatch document = null;
/**
* 一切 Word 文檔對象
*/
private Dispatch documents = null;
/**
* selection 代表以後運動文檔窗口中的所選內容。假如文檔中沒有選中任何內容,則此對象代表拔出點(即光標地點地位)。<br/>
* 每一個文檔窗口中只能存在一個selection對象,而且在全部運用法式中,只能存在一個運動的selection對象
*/
private Dispatch selection = null;
/**
* range 對象代表文檔中的一個持續的區域。每一個range對象由一個肇端字符地位與停止字符地位界說。<br/>
* range 對象自力於所選內容。你可以界說和處置一個規模而無需轉變所選內容。還可以在文檔中界說多個規模。但每一個文檔中只能有一個所選內容
*/
private Dispatch range = null;
/**
* PageSetup 對象包括文檔一切頁面的設置屬性(如紙張年夜小,右邊距,下邊距)
*/
private Dispatch pageSetup = null;
/**
* 文檔中的一切表格對象
*/
private Dispatch tables = null;
/** 單個表格對象 */
private Dispatch table = null;
/** 表格一切行對象 */
private Dispatch rows = null;
/** 表格一切列對象 */
private Dispatch cols = null;
/** 表格指定行對象 */
private Dispatch row = null;
/** 表格指定列對象 */
private Dispatch col = null;
/** 表格中指定的單位格 */
private Dispatch cell = null;
/** 字體 */
private Dispatch font = null;
/** 對齊方法 */
private Dispatch alignment = null;
/**
* 結構辦法
*
* @param visible
* 設置在生成word文檔時,法式能否可見
*/
public MSOfficeGeneratorUtils(boolean visible) {
if (this.word == null) {
// 初始化Microsoft Office Word 實例
this.word = new ActiveXComponent("Word.Application");
this.word.setProperty("Visible", new Variant(visible));
// 禁用宏
this.word.setProperty("AutomationSecurity", new Variant(3));
}
if (this.documents == null)
this.documents = word.getProperty("Documents").toDispatch();
}
/**
* 設置頁面偏向與頁邊距
*
* @param orientation
* 頁面偏向
* <ul>
* <li>0 橫向</li>
* <li>1 縱向</li>
* </ul>
* @param leftMargin
* 右邊距
* @param rightMargin
* 左邊距
* @param topMargin
* 上邊距
* @param buttomMargin
* 下邊距
*/
public void setPageSetup(int orientation, int leftMargin, int rightMargin,
int topMargin, int buttomMargin) {
if (this.pageSetup == null)
this.getPageSetup();
Dispatch.put(pageSetup, "Orientation", orientation);
Dispatch.put(pageSetup, "LeftMargin", leftMargin);
Dispatch.put(pageSetup, "RightMargin", rightMargin);
Dispatch.put(pageSetup, "TopMargin", topMargin);
Dispatch.put(pageSetup, "BottomMargin", buttomMargin);
}
/**
* 翻開word文檔
*
* @param docPath
* word文檔途徑
* @return 翻開的文檔對象
*/
public Dispatch openDocument(String docPath) {
this.document = Dispatch.call(documents, "Open", docPath).toDispatch();
this.getSelection();
this.getRange();
this.getAlignment();
this.getFont();
this.getPageSetup();
return this.document;
}
/**
* 創立一篇新文檔
*
* @return 文檔對象
*/
public Dispatch createNewDocument() {
this.document = Dispatch.call(documents, "Add").toDispatch();
this.getSelection();
this.getRange();
this.getPageSetup();
this.getAlignment();
this.getFont();
return this.document;
}
/**
* 獲得選定的內容或拔出點
*
* @return selection
*/
public Dispatch getSelection() {
this.selection = word.getProperty("Selection").toDispatch();
return this.selection;
}
/**
* 獲得以後文檔中可以修正的部門,條件是必需存在選中內容
*
* @return range
*/
public Dispatch getRange() {
this.range = Dispatch.get(this.selection, "Range").toDispatch();
return this.range;
}
/**
* 取得以後文檔的頁面屬性
*/
public Dispatch getPageSetup() {
if (this.document == null)
return this.pageSetup;
this.pageSetup = Dispatch.get(this.document, "PageSetup").toDispatch();
return this.pageSetup;
}
/**
* 把選中內容或拔出點向上挪動
*
* @param count
* 挪動的間隔
*/
public void moveUp(int count) {
for (int i = 0; i < count; i++)
Dispatch.call(this.selection, "MoveUp");
}
/**
* 把選中內容或拔出點向下挪動
*
* @param count
* 挪動的間隔
*/
public void moveDown(int count) {
for (int i = 0; i < count; i++)
Dispatch.call(this.selection, "MoveDown");
}
/**
* 把選中內容或拔出點向左挪動
*
* @param count
* 挪動的間隔
*/
public void moveLeft(int count) {
for (int i = 0; i < count; i++)
Dispatch.call(this.selection, "MoveLeft");
}
/**
* 把選中內容或拔出點向右挪動
*
* @param count
* 挪動的間隔
*/
public void moveRight(int count) {
for (int i = 0; i < count; i++)
Dispatch.call(this.selection, "MoveRight");
}
/**
* 履行硬換行(回車鍵)
*
* @param count
* 換行數
*/
public void enterDown(int count) {
for (int i = 0; i < count; i++)
Dispatch.call(this.selection, "TypeParagraph");
}
/**
* 把拔出點挪動到文件首地位
*/
public void moveStart() {
Dispatch.call(this.selection, "HomeKey", new Variant(6));
}
/**
* 把拔出點挪動到文件末尾
*/
public void moveEnd() {
Dispatch.call(selection, "EndKey", new Variant(6));
}
/**
* 從選定內容或拔出點開端查找文本
*
* @param toFindText
* 要查找的內容
* @return 查詢到的內容並選中
*/
public boolean find(String toFindText) {
// 從selection地點地位開端查詢
Dispatch find = Dispatch.call(this.selection, "Find").toDispatch();
// 設置要查找的?熱?br /> 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 newText
* 要調換的內容
*/
public void replace(String newText) {
// 設置調換文本
Dispatch.put(this.selection, "Text", newText);
}
/**
* 全局調換
*
* @param oldText
* 要調換的內容
* @param replaceObj
* 被調換的內容
*/
public void replaceAll(String oldText, Object replaceObj) {
// 將拔出點移到文件開首
moveStart();
// 表格調換方法
String newText = (String) replaceObj;
// 圖片調換方法
if (oldText.indexOf("image") != -1 || newText.lastIndexOf(".bmp") != -1 || newText.lastIndexOf(".jpg") != -1 || newText.lastIndexOf(".gif") != -1) {
while (find(oldText)) {
insertImage(newText);
Dispatch.call(this.selection, "MoveRight");
}
// 文本方法
} else {
while (find(oldText)) {
replace(newText);
Dispatch.call(this.selection, "MoveRight");
}
}
}
/**
* 將指定的內容調換成圖片
* @param replaceText 指定的內容
* @param imgPath 圖片途徑
*/
public void replaceText2Image(String replaceText,String imgPath){
moveStart();
while(find(replaceText)){
insertImage(imgPath);
moveEnd();
enterDown(1);
}
}
/**
* 向以後拔出點調換圖片
*
* @param imagePath
* 圖片的途徑
*/
public void insertImage(String imagePath) {
Dispatch.call(Dispatch.get(selection, "InLineShapes").toDispatch(), "AddPicture", imagePath);
}
/**
* 歸並單位格
*
* @param tableIndex
* 表格下標,從1開端
* @param fstCellRowIdx
* 開端行
* @param fstCellColIdx
* 開端列
* @param secCellRowIdx
* 停止行
* @param secCellColIdx
* 停止列
*/
public void mergeCell(int tableIndex, int fstCellRowIdx, int fstCellColIdx,
int secCellRowIdx, int secCellColIdx) {
getTable(tableIndex);
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);
}
/**
* 拆分以後單位格
*
* @param numRows
* 拆分的行數,假如不想拆分行,請指定為1
* @param numColumns
* 拆分的列數,假如不想拆排列,請指定為1
*/
public void splitCell(int numRows, int numColumns) {
Dispatch.call(this.cell, "Split", new Variant(numRows), new Variant(
numColumns));
}
/**
* 向表格中寫入內容
*
* @param list
* 要寫入的內容<br/>
* 注:list.size() 應當與表格的rows分歧,String數組的length屬性應與表格的columns分歧
*/
public void insertToTable(List<String[]> list) {
if (list == null || list.size() <= 0)
return;
if (this.table == null)
return;
for (int i = 0; i < list.size(); i++) {
String[] strs = list.get(i);
for (int j = 0; j < strs.length; j++) {
// 遍歷表格中每??單位格,遍歷次數所要填入的?熱菔?肯嗤?br /> Dispatch cell = this.getCell(i + 1, j + 1);
// 選中此單位格
Dispatch.call(cell, "Select");
// 寫入?熱莸醬說ピ?裰?br /> Dispatch.put(this.selection, "Text", strs[j]);
// 將拔出點挪動至下一??地位
}
this.moveDown(1);
}
// 換行
this.enterDown(1);
}
/**
* 向以後拔出點拔出文本內容
*
* @param list
* 要拔出的內容,list.size()代表行數
*/
public void insertToDocument(List<String> list) {
if (list == null || list.size() <= 0)
return;
if (this.document == null)
return;
for (String str : list) {
Dispatch.put(this.selection, "Text", str);
this.moveDown(1);
this.enterDown(1);
}
}
/**
* 在以後拔出點拔出文本
*
* @param insertText
* 要拔出的文本
*/
public void insertToText(String insertText) {
Dispatch.put(this.selection, "Text", insertText);
}
/**
* 在以後拔出點拔出字符串,應用此辦法拔出一行text後,Word會默許選中它,假如再挪用此辦法,會將本來的內容籠罩失落,所以挪用此辦法後,記得挪用moveRight,將偏移量向左邊挪動一個地位 。
* @param newText 要拔出的新字符串
*/
public void insertText(String newText) {
Dispatch.put(selection, "Text", newText);
}
/**
* 創立新的表格
*
* @param rowCount
* 行
* @param colCount
* 列
* @param width
* 表格邊框
* <ul>
* <li>0 無邊框</li>
* <li>1 有邊框</li>
* </ul>
* @return 表格對象
*/
public Dispatch createNewTable(int rowCount, int colCount, int width) {
if (this.tables == null)
this.getTables();
this.getRange();
if (rowCount > 0 && colCount > 0)
this.table = Dispatch.call(this.tables, "Add", this.range,
new Variant(rowCount), new Variant(colCount),
new Variant(width)).toDispatch();
return this.table;
}
/**
* 獲得以後document對象中的一切表格對象
*
* @return tables
*/
public Dispatch getTables() {
if (this.document == null)
return this.tables;
this.tables = Dispatch.get(this.document, "Tables").toDispatch();
return this.tables;
}
/**
* 獲得以後文檔中的一切表格數目
*
* @return 表格數目
*/
public int getTablesCount() {
if (this.tables == null)
this.getTables();
return Dispatch.get(tables, "Count").getInt();
}
/**
* 依據索引取得table對象
*
* @param tableIndex
* 索引
* @return table
*/
public Dispatch getTable(int tableIndex) {
if (this.tables == null)
this.getTables();
if (tableIndex >= 0)
this.table = Dispatch.call(this.tables, "Item", new Variant(tableIndex)).toDispatch();
return this.table;
}
/**
* 在指定的單位格裡填寫數據
*
* @param tableIndex
* 表格索引
* @param cellRowIdx
* 行索引
* @param cellColIdx
* 列索引
* @param txt
* 文本
*/
public void putTxtToCell(int tableIndex, int cellRowIdx, int cellColIdx, String txt) {
getTable(tableIndex);
getCell(cellRowIdx, cellColIdx);
Dispatch.call(this.cell, "Select");
Dispatch.put(this.selection, "Text", txt);
}
/**
* 在以後文檔末尾拷貝來自另外一個文檔中的段落
*
* @param anotherDocPath
* 另外一個文檔的磁盤途徑
* @param tableIndex
* 被拷貝的段落在另外一格文檔中的序號(從1開端)
*/
public void copyParagraphFromAnotherDoc(String anotherDocPath, int paragraphIndex) {
Dispatch wordContent = Dispatch.get(this.document, "Content").toDispatch(); // 獲得以後文檔的內容
Dispatch.call(wordContent, "InsertAfter", "$selection$");// 拔出特別符定位拔出點
copyParagraphFromAnotherDoc(anotherDocPath, paragraphIndex, "$selection$");
}
/**
* 在以後文檔指定的地位拷貝來自另外一個文檔中的段落
*
* @param anotherDocPath
* 另外一個文檔的磁盤途徑
* @param tableIndex
* 被拷貝的段落在另外一格文檔中的序號(從1開端)
* @param pos
* 以後文檔指定的地位
*/
public void copyParagraphFromAnotherDoc(String anotherDocPath, int paragraphIndex, String pos) {
Dispatch doc2 = null;
try {
doc2 = Dispatch.call(documents, "Open", anotherDocPath).toDispatch();
Dispatch paragraphs = Dispatch.get(doc2, "Paragraphs").toDispatch();
Dispatch paragraph = Dispatch.call(paragraphs, "Item", new Variant(paragraphIndex)).toDispatch();
Dispatch range = Dispatch.get(paragraph, "Range").toDispatch();
Dispatch.call(range, "Copy");
if (this.find(pos)) {
getRange();
Dispatch.call(this.range, "Paste");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (doc2 != null) {
Dispatch.call(doc2, "Close", new Variant(true));
doc2 = null;
}
}
}
/**
* 在以後文檔指定的地位拷貝來自另外一個文檔中的表格
*
* @param anotherDocPath
* 另外一個文檔的磁盤途徑
* @param tableIndex
* 被拷貝的表格在另外一格文檔中的序號(從1開端)
* @param pos
* 以後文檔指定的地位
*/
public void copyTableFromAnotherDoc(String anotherDocPath, int tableIndex,
String pos) {
Dispatch doc2 = null;
try {
doc2 = Dispatch.call(documents, "Open", anotherDocPath)
.toDispatch();
Dispatch tables = Dispatch.get(doc2, "Tables").toDispatch();
Dispatch table = Dispatch.call(tables, "Item",
new Variant(tableIndex)).toDispatch();
Dispatch range = Dispatch.get(table, "Range").toDispatch();
Dispatch.call(range, "Copy");
if (this.find(pos)) {
getRange();
Dispatch.call(this.range, "Paste");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (doc2 != null) {
Dispatch.call(doc2, "Close", new Variant(true));
doc2 = null;
}
}
}
/**
* 在以後文檔指定的地位拷貝來自另外一個文檔中的圖片
*
* @param anotherDocPath
* 另外一個文檔的磁盤途徑
* @param shapeIndex
* 被拷貝的圖片在另外一格文檔中的地位
* @param pos
* 以後文檔指定的地位
*/
public void copyImageFromAnotherDoc(String anotherDocPath, int shapeIndex,
String pos) {
Dispatch doc2 = null;
try {
doc2 = Dispatch.call(documents, "Open", anotherDocPath)
.toDispatch();
Dispatch shapes = Dispatch.get(doc2, "InLineShapes").toDispatch();
Dispatch shape = Dispatch.call(shapes, "Item",
new Variant(shapeIndex)).toDispatch();
Dispatch imageRange = Dispatch.get(shape, "Range").toDispatch();
Dispatch.call(imageRange, "Copy");
if (this.find(pos)) {
getRange();
Dispatch.call(this.range, "Paste");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (doc2 != null) {
Dispatch.call(doc2, "Close", new Variant(true));
doc2 = null;
}
}
}
/**
* 在指定的表格的指定行後面增長行
*
* @param tableIndex
* word文件中的第N張表(從1開端)
* @param rowIndex
* 指定行的序號(從1開端)
*/
public void addTableRow(int tableIndex, int rowIndex) {
getTable(tableIndex);
getTableRows();
getTableRow(rowIndex);
Dispatch.call(this.rows, "Add", new Variant(this.row));
}
/**
* 在第1行前增長一行
*
* @param tableIndex
* word文檔中的第N張表(從1開端)
*/
public void addFirstTableRow(int tableIndex) {
getTable(tableIndex);
getTableRows();
Dispatch row = Dispatch.get(rows, "First").toDispatch();
Dispatch.call(this.rows, "Add", new Variant(row));
}
/**
* 在最初1行前增長一行
*
* @param tableIndex
* word文檔中的第N張表(從1開端)
*/
public void addLastTableRow(int tableIndex) {
getTable(tableIndex);
getTableRows();
Dispatch row = Dispatch.get(this.rows, "Last").toDispatch();
Dispatch.call(this.rows, "Add", new Variant(row));
}
/**
* 增長一行
*
* @param tableIndex
* word文檔中的第N張表(從1開端)
*/
public void addRow(int tableIndex) {
getTable(tableIndex);
getTableRows();
Dispatch.call(this.rows, "Add");
}
/**
* 增長一列
*
* @param tableIndex
* word文檔中的第N張表(從1開端)
*/
public void addCol(int tableIndex) {
getTable(tableIndex);
getTableColumns();
Dispatch.call(this.cols, "Add").toDispatch();
Dispatch.call(this.cols, "AutoFit");
}
/**
* 在指定列後面增長表格的列
*
* @param tableIndex
* word文檔中的第N張表(從1開端)
* @param colIndex
* 指定列的序號 (從1開端)
*/
public void addTableCol(int tableIndex, int colIndex) {
getTable(tableIndex);
getTableColumns();
getTableColumn(colIndex);
Dispatch.call(this.cols, "Add", this.col).toDispatch();
Dispatch.call(this.cols, "AutoFit");
}
/**
* 在第1列前增長一列
*
* @param tableIndex
* word文檔中的第N張表(從1開端)
*/
public void addFirstTableCol(int tableIndex) {
getTable(tableIndex);
Dispatch cols = getTableColumns();
Dispatch col = Dispatch.get(cols, "First").toDispatch();
Dispatch.call(cols, "Add", col).toDispatch();
Dispatch.call(cols, "AutoFit");
}
/**
* 在最初一列前增長一列
*
* @param tableIndex
* word文檔中的第N張表(從1開端)
*/
public void addLastTableCol(int tableIndex) {
getTable(tableIndex);
Dispatch cols = getTableColumns();
Dispatch col = Dispatch.get(cols, "Last").toDispatch();
Dispatch.call(cols, "Add", col).toDispatch();
Dispatch.call(cols, "AutoFit");
}
/**
* 獲得以後表格的列數
*
* @return 列總數
*/
public int getTableColumnsCount() {
if (this.table == null)
return 0;
return Dispatch.get(this.cols, "Count").getInt();
}
/**
* 獲得以後表格的行數
*
* @return 行總數
*/
public int getTableRowsCount() {
if (this.table == null)
return 0;
return Dispatch.get(this.rows, "Count").getInt();
}
/**
* 獲得以後表格的一切列對象
*
* @return cols
*/
public Dispatch getTableColumns() {
if (this.table == null)
return this.cols;
this.cols = Dispatch.get(this.table, "Columns").toDispatch();
return this.cols;
}
/**
* 獲得以後表格的一切行對象
*
* @return rows
*/
public Dispatch getTableRows() {
if (this.table == null)
return this.rows;
this.rows = Dispatch.get(this.table, "Rows").toDispatch();
return this.rows;
}
/**
* 依據索引取得以後表格的列對象
*
* @param columnIndex
* 列索引
* @return col
*/
public Dispatch getTableColumn(int columnIndex) {
if (this.cols == null)
this.getTableColumns();
if (columnIndex >= 0)
this.col = Dispatch.call(this.cols, "Item",
new Variant(columnIndex)).toDispatch();
return this.col;
}
/**
* 依據索引取得以後表格的行對象
*
* @param rowIndex
* 行索引
* @return row
*/
public Dispatch getTableRow(int rowIndex) {
if (this.rows == null)
this.getTableRows();
if (rowIndex >= 0)
this.row = Dispatch.call(this.rows, "Item", new Variant(rowIndex))
.toDispatch();
return this.row;
}
/**
* 主動調劑以後一切表格
*/
public void autoFitTable() {
int count = this.getTablesCount();
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 cellRowIdx
* 行索引
* @param cellColIdx
* 列索引
* @return cell對象
*/
public Dispatch getCell(int cellRowIdx, int cellColIdx) {
if (this.table == null)
return this.cell;
if (cellRowIdx >= 0 && cellColIdx >= 0)
this.cell = Dispatch.call(this.table, "Cell",
new Variant(cellRowIdx), new Variant(cellColIdx))
.toDispatch();
return this.cell;
}
public void selectCell(int cellRowIdx, int cellColIdx) {
if (this.table == null)
return;
getCell(cellRowIdx, cellColIdx);
if (cellRowIdx >= 0 && cellColIdx >= 0)
Dispatch.call(this.cell, "select");
}
/**
* 設置以後文檔的題目
*
* @param title 題目
* @param alignmentType 對齊方法
* @see setAlignment
*/
public void setTitle(String title, int alignmentType) {
if (title == null || "".equals(title))
return;
if (this.alignment == null)
this.getAlignment();
if(alignmentType != 0 && alignmentType != 1 && alignmentType != 2)
alignmentType = 0;
Dispatch.put(this.alignment, "Alignment", alignmentType);
Dispatch.call(this.selection, "TypeText", title);
}
/**
* 設置以後表格邊框的粗細
*
* @param width
* 規模:1 < w < 13, 假如是0,就代表?]有框<br/>
*/
public void setTableBorderWidth(int width) {
if (this.table == null)
return;
/*
* 設置表格線的粗細 1:代表最上邊一條線 2:代表最右邊一條線 3:最下邊一條線 4:最左邊一條線 5:除最上邊最下邊以外的一切橫線
* 6:除最右邊最左邊以外的一切豎線 7:從左上角到右下角的斜線 8:從左下角到右上角的斜線
*/
Dispatch borders = Dispatch.get(table, "Borders").toDispatch();
Dispatch border = null;
for (int i = 1; i < 7; i++) {
border = Dispatch.call(borders, "Item", new Variant(i))
.toDispatch();
if (width != 0) {
Dispatch.put(border, "LineWidth", new Variant(width));
Dispatch.put(border, "Visible", new Variant(true));
} else if (width == 0) {
Dispatch.put(border, "Visible", new Variant(false));
}
}
}
/**
* 獲得指定的表格指定的單位格中的值
*
* @param tableIndex
* 表格索引(從1開端)
* @param rowIndex
* 行索引(從1開端)
* @param colIndex
* 列索引(從1開端)
* @return
*/
public String getTxtFromCell(int tableIndex, int rowIndex, int colIndex) {
String value = "";
// 設置為以後表格
getTable(tableIndex);
getCell(rowIndex, colIndex);
if (cell != null) {
Dispatch.call(cell, "Select");
value = Dispatch.get(selection, "Text").toString();
value = value.substring(0, value.length() - 2); // 去失落最初的回車符;
}
return value;
}
/**
* 對以後選中的內容設置項目符號與列表
*
* @param tabIndex
* <ul>
* <li>1.項目編號</li>
* <li>2.編號</li>
* <li>3.多級編號</li>
* <li>4.列表款式</li>
* </ul>
* @param index
* 0表現沒有,其它數字代表是該tab頁中的第幾項內容
*/
public void applyListTemplate(int tabIndex, int index) {
// 獲得ListGalleries對象列表
Dispatch listGalleries = Dispatch.get(this.word, "ListGalleries")
.toDispatch();
// 獲得列表中一個對象
Dispatch listGallery = Dispatch.call(listGalleries, "Item",
new Variant(tabIndex)).toDispatch();
Dispatch listTemplates = Dispatch.get(listGallery, "ListTemplates")
.toDispatch();
if (this.range == null)
this.getRange();
Dispatch listFormat = Dispatch.get(this.range, "ListFormat")
.toDispatch();
Dispatch.call(listFormat, "ApplyListTemplate",
Dispatch.call(listTemplates, "Item", new Variant(index)),
new Variant(true), new Variant(1), new Variant(0));
}
/**
* 增長文檔目次
*/
public void addTablesOfContents() {
// 獲得ActiveDocument、TablesOfContents、range對象
Dispatch ActiveDocument = word.getProperty("ActiveDocument")
.toDispatch();
Dispatch TablesOfContents = Dispatch.get(ActiveDocument,
"TablesOfContents").toDispatch();
Dispatch range = Dispatch.get(this.selection, "Range").toDispatch();
// 增長目次
Dispatch.call(TablesOfContents, "Add", range, new Variant(true),
new Variant(1), new Variant(3), new Variant(true), new Variant(
""), new Variant(true), new Variant(true));
}
/**
* 設置以後selection對齊方法
*
* @param alignmentType
* <ul>
* <li>0.居左</li>
* <li>1.居中</li>
* <li>2.居右</li>
* </ul>
*/
public void setAlignment(int alignmentType) {
if (this.alignment == null)
this.getAlignment();
Dispatch.put(this.alignment, "Alignment", alignmentType);
}
/**
* 獲得以後selection的對齊方法
*
* @return alignment
*/
public Dispatch getAlignment() {
if (this.selection == null)
this.getSelection();
this.alignment = Dispatch.get(this.selection, "ParagraphFormat")
.toDispatch();
return this.alignment;
}
/**
* 獲得字體對象
*
* @return font
*/
public Dispatch getFont() {
if (this.selection == null)
this.getSelection();
this.font = Dispatch.get(this.selection, "Font").toDispatch();
return this.font;
}
/**
* 設置以後selection的字體
*
* @param fontName
* 字體稱號,如“微軟雅黑”
* @param isBold
* 能否粗體
* @param isItalic
* 能否斜體
* @param isUnderline
* 能否下劃線
* @param rgbColor
* 色彩值"1,1,1,1"
* @param Scale
* 字體間距
* @param fontSize
* 字體年夜小
*/
@Deprecated
public void setFontScale(String fontName, boolean isBold, boolean isItalic,
boolean isUnderline, String rgbColor, int Scale, int fontSize) {
Dispatch.put(this.font, "Name", fontName);
Dispatch.put(this.font, "Bold", isBold);
Dispatch.put(this.font, "Italic", isItalic);
Dispatch.put(this.font, "Underline", isUnderline);
Dispatch.put(this.font, "Color", rgbColor);
Dispatch.put(this.font, "Scaling", Scale);
Dispatch.put(this.font, "Size", fontSize);
}
/**
* 設置以後選定內容的字體
* @param isBold 能否為粗體
* @param isItalic 能否為斜體
* @param isUnderLine 能否帶下劃線
* @param color rgb 字體色彩 例如:白色 255,0,0
* @param size 字體年夜小 12:小四 16:三號
* @param name 字體稱號 例如:宋體,新宋體,楷體,隸書
*/
public void setFont(boolean isBold,boolean isItalic,boolean isUnderLine,String color,String size,String name) {
Dispatch font = Dispatch.get(getSelection(), "Font").toDispatch();
Dispatch.put(font, "Name", new Variant(name));
Dispatch.put(font, "Bold", new Variant(isBold));
Dispatch.put(font, "Italic", new Variant(isItalic));
Dispatch.put(font, "Underline", new Variant(isUnderLine));
if(!"".equals(color))
Dispatch.put(font, "Color", color);
Dispatch.put(font, "Size", size);
}
/**
* 保留文件
*
* @param outputPath
* 保留途徑
*/
public void saveAs(String outputPath) {
if (this.document == null)
return;
if (outputPath == null || "".equals(outputPath))
return;
Dispatch.call(this.document, "SaveAs", outputPath);
}
/**
* 另存為HTML內容
*
* @param htmlFile
* html文件途徑
*/
public void saveAsHtml(String htmlFile) {
Dispatch.invoke(this.document, "SaveAs", Dispatch.Method, new Object[] {
htmlFile, new Variant(8) }, new int[1]);
}
/**
* saveFormat | Member name Description 0 | wdFormatDocument Microsoft Word
* format. 1 | wdFormatTemplate Microsoft Word template format. 2 |
* wdFormatText Microsoft Windows text format. 3 | wdFormatTextLineBreaks
* Microsoft Windows text format with line breaks preserved. 4 |
* wdFormatDOSText Microsoft DOS text format. 5 | wdFormatDOSTextLineBreaks
* Microsoft DOS text with line breaks preserved. 6 | wdFormatRTF Rich text
* format (RTF). 7 | wdFormatEncodedText Encoded text format. 7 |
* wdFormatUnicodeText Unicode text format. 8 | wdFormatHTML Standard HTML
* format. 9 | wdFormatWebArchive Web archive format. 10 |
* wdFormatFilteredHTML Filtered HTML format. 11 | wdFormatXML Extensible
* Markup Language (XML) format.
*/
/**
* 封閉以後word文檔
*/
public void close() {
if (document == null)
return;
Dispatch.call(document, "Close", new Variant(0));
}
/**
* 履行以後文檔打印敕令
*/
public void printFile() {
if (document == null)
return;
Dispatch.call(document, "PrintOut");
}
/**
* 加入Microsoft Office Word法式
*/
public void quit() {
word.invoke("Quit", new Variant[0]);
ComThread.Release();
}
/**
* 選中整篇文檔
*/
public void selectAllContent(){
Dispatch.call(this.document,"select");
}
/**
* 復制整篇文檔
* @param target
*/
public void copy(){
Dispatch.call(this.document,"select");
Dispatch.call(this.selection,"copy");
}
/**
* 在以後拔出點地位粘貼選中的內容
*/
public void paste(){
Dispatch.call(this.selection,"paste");
}
public static void main(String[] args) throws IOException {
MSOfficeGeneratorUtils officeUtils = new MSOfficeGeneratorUtils(true);
// officeUtils.openDocument("D:\TRS\TRSWCMV65HBTCIS\Tomcat\webapps\wcm\eipv65\briefreport\templates\zhengfa\頭部.doc");
// officeUtils.replaceAll("${briefreport_year}", "2011");
// officeUtils.replaceAll("${briefreport_issue}", "3");
// File file = File.createTempFile("test", ".tmp");
// System.out.println(file.getAbsolutePath());
// file.delete();
// File file = new File("C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\test5411720146039914615.tmp");
// System.out.println(file.exists());
officeUtils.createNewDocument();
// officeUtils.createNewTable(1, 1, 1);
// officeUtils.insertText("揭橥時光:2011-11-11");
// officeUtils.moveRight(1);
// officeUtils.insertText("t");
// officeUtils.moveRight(1);
// officeUtils.insertText("地點頻道:微觀情況/社會情況");
// officeUtils.moveRight(1);
// officeUtils.insertText("t");
// officeUtils.moveRight(1);
// officeUtils.insertText("文章作者:楊葉茂");
// officeUtils.moveRight(1);
officeUtils.insertText("I'm Chinese");
officeUtils.moveRight(1);
officeUtils.enterDown(1);
officeUtils.insertText("I'm not Chinese");
officeUtils.moveRight(1);
/* doc2 = Dispatch.call(documents, "Open", anotherDocPath).toDispatch();
Dispatch paragraphs = Dispatch.get(doc2, "Paragraphs").toDispatch();
Dispatch paragraph = Dispatch.call(paragraphs, "Item", new Variant(paragraphIndex)).toDispatch();*/
// officeUtils.setFontScale("微軟雅黑", true, true, true, "1,1,1,1", 100,
// 18);
// officeUtils.setAlignment(1);
// officeUtils.insertToText("這是一個測試");
// officeUtils.moveEnd();
// officeUtils.setFontScale("微軟雅黑", false, false, false, "1,1,1,1", 100,
// 18);
// officeUtils.insertImage("d:\11.jpg");
// officeUtils.enterDown(1);
// officeUtils.insertToText("這是我的照片");
// officeUtils.enterDown(1);
// officeUtils.createNewTable(3, 5, 1);
// List<String[]> list = new ArrayList<String[]>();
// for (int i = 0; i < 3; i++) {
// String[] strs = new String[5];
// for (int j = 0; j < 5; j++) {
// strs[j] = j + i + "";
// }
// list.add(strs);
// }
// officeUtils.insertToTable(list);
// officeUtils.createNewTable(10, 10, 1);
// officeUtils.moveEnd();
// officeUtils.enterDown(1);
// officeUtils.createNewTable(3,2,1);
// officeUtils.mergeCell(1, 1, 7, 1, 9);
// officeUtils.mergeCell(1, 2, 2, 3, 7);
// officeUtils.mergeCell(1, 3, 4, 9, 10);
// officeUtils.insertText("123");
// officeUtils.getCell(1, 2);
// officeUtils.splitCell(2 , 4);
// officeUtils.selectCell(1, 2);
// officeUtils.insertText("split");
// officeUtils.selectCell(1, 5);
// officeUtils.insertText("split1");
// officeUtils.selectCell(1, 6);
// officeUtils.insertText("yy");
// officeUtils.selectCell(2, 4);
// officeUtils.insertText("ltg");
// officeUtils.saveAs("D:\" + System.currentTimeMillis() + ".doc");
// officeUtils.close();
// officeUtils.quit();
}
}
TestJsoupComponent
package com.topstar.test;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.UUID;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.nodes.Node;
import com.eprobiti.trs.TRSException;
/** * 根本思緒:獲得html內容,由於長短尺度的html內容,應用Jsoup組件將讀掏出來的內容轉換為尺度的html文件內容,
* 然後遍歷每一個節點,找到img標簽,記載其索引,再依據其文件名規矩拼接出圖片的物理途徑,將其調換為${image_index}標識,爾後將{索引,途徑}
* 以鍵值對的方法豐入Map中, 如
* "${image_1,d:lucene.png}"格局,然後應用jacob組件翻開template.doc,選中整篇文檔並復制,爾後新建一篇文檔,粘貼剛復制的內
* 容 查找圖片標識位,將其調換為圖片
*
* @since 2011-12-09
* @author xioawu
* @cateogry topstar
* @version 1.0
*/
public class TestJsoupComponent {
private static Document document;
private static Map<String, String> imgMap = new HashMap<String, String>(); //寄存圖片標識符及物理途徑 i.e {"image_1","D:\lucene.png"};
private static List<String> files = new ArrayList<String>(); //存入當地生成的各個文章doc的文件名
private static Integer imgIndex = 1; //圖片標識
public static void main(String[] args) throws TRSException, IOException {
MSOfficeGeneratorUtils officeUtils = new MSOfficeGeneratorUtils(true); // 將生成進程設置為弗成見
String html = "<html>.....</html>";// 獲得注釋內容 , 此處本身填寫html內容
String header = "測試題目"; // 獲得文章題目
document = Jsoup.parse(html);
// System.out.println(document.html());
for (Element element : document.body().select("body > *"))
// 遞歸遍歷body下的一切直接子元素,找出img標簽,@see SysElementText Method
sysElementText(element);
File file = new File("D:" + File.separator + "template.doc");
file.createNewFile(); // 創立模板html
FileWriter fw = new FileWriter(file);
fw.write(document.html(), 0, document.html().length());// 寫入文件
fw.flush(); // 清空FileWriter緩沖區
fw.close();
officeUtils.openDocument("D:\template.doc"); // 翻開template.doc .由trsserver eipdocument庫中的dochtmlcon生成的template.doc文件
officeUtils.copy(); // 拷貝整篇文檔
officeUtils.close();
officeUtils.createNewDocument();
officeUtils.paste(); // 粘貼整篇文檔
for (Entry<String, String> entry : imgMap.entrySet()) //輪回將圖片標識位調換成圖片
officeUtils.replaceText2Image(entry.getKey(), entry.getValue());
officeUtils.moveStart(); // 將拔出點挪動至Word文檔的最極點
officeUtils.setFont(true, false, false, "0,0,0", "20", "宋體"); // 設置字體,詳細參數,本身看API
officeUtils.setTitle(header, 1); // 設置題目
officeUtils.enterDown(1); // 設置一行回車
String filename = UUID.randomUUID().toString();
files.add(filename); // 記載文件名,
officeUtils.saveAs("D:" + File.separator + filename + ".doc"); // 生成D:\UUID.doc文件,應用UUID避免同名
officeUtils.close(); // 封閉Office Word創立的文檔
officeUtils.quit(); // 加入Office Word法式
MSOfficeGeneratorUtils msOfficeUtils = new MSOfficeGeneratorUtils(false); // 整合進程設置為可見
msOfficeUtils.createNewDocument();
msOfficeUtils.saveAs("D:" + File.separator + "complete.doc");
msOfficeUtils.close();
for (String fileName : files) {
msOfficeUtils.openDocument("D:" + File.separator + fileName + ".doc");
msOfficeUtils.copy();
msOfficeUtils.close();
msOfficeUtils.openDocument("D:" + File.separator + "complete.doc");
msOfficeUtils.moveEnd();
msOfficeUtils.enterDown(1);
msOfficeUtils.paste();
msOfficeUtils.saveAs("D:" + File.separator + "complete.doc");
msOfficeUtils.close();
}
//復制一個內容比擬少的*.doc文檔,避免在封閉word法式時提醒有年夜量的copy內容在內存中,能否運用於其它法式對話框,
msOfficeUtils.createNewDocument();
msOfficeUtils.insertText("測試新聞");
msOfficeUtils.copy();
msOfficeUtils.close();
msOfficeUtils.quit();
imgIndex = 1;
imgMap.clear();
}
public static void sysElementText(Node node) {
if (node.childNodes().size() == 0) {
if (node.nodeName().equals("img")) { // 處置圖片途徑成績
node.after("<p>${image_" + imgIndex + "}</p>"); // 為img添加同級P標簽,內容為<P>${image_imgIndexNumber}</P>
String src = node.attr("src");
node.remove(); // 刪除Img標簽。
StringBuffer imgUrl = new StringBuffer("D:\TRS\TRSWCMV65HBTCIS\WCMData\webpic\"); // 臨時將途徑直接寫逝世,正式運用上應將此處改寫為WebPic的設置裝備擺設項
imgUrl.append(src.substring(0, 8)).append("\").append(src.subSequence(0, 10)).append("\").append(src);
// node.attr("src", imgUrl.toString()); //這一句沒有需要,由於此img標簽曾經移除
imgMap.put("${image_" + imgIndex++ + "}", imgUrl.toString());
}
} else {
for (Node rNode : node.childNodes()) {
sysElementText(rNode);
}
}
}
}