Apache POIWord-テーブル
この章では、ドキュメントにデータのテーブルを作成する方法を学習します。を使用してテーブルデータを作成できますXWPFTableクラス。それぞれを追加することによってRow テーブルに追加し、それぞれを追加します cell に Row, テーブルデータを取得します。
テーブルを作成する
次のコードは、ドキュメントにテーブルを作成するために使用されます-
import java.io.File;
import java.io.FileOutputStream;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFTable;
import org.apache.poi.xwpf.usermodel.XWPFTableRow;
public class CreateTable {
public static void main(String[] args)throws Exception {
//Blank Document
XWPFDocument document = new XWPFDocument();
//Write the Document in file system
FileOutputStream out = new FileOutputStream(new File("create_table.docx"));
//create table
XWPFTable table = document.createTable();
//create first row
XWPFTableRow tableRowOne = table.getRow(0);
tableRowOne.getCell(0).setText("col one, row one");
tableRowOne.addNewTableCell().setText("col two, row one");
tableRowOne.addNewTableCell().setText("col three, row one");
//create second row
XWPFTableRow tableRowTwo = table.createRow();
tableRowTwo.getCell(0).setText("col one, row two");
tableRowTwo.getCell(1).setText("col two, row two");
tableRowTwo.getCell(2).setText("col three, row two");
//create third row
XWPFTableRow tableRowThree = table.createRow();
tableRowThree.getCell(0).setText("col one, row three");
tableRowThree.getCell(1).setText("col two, row three");
tableRowThree.getCell(2).setText("col three, row three");
document.write(out);
out.close();
System.out.println("create_table.docx written successully");
}
}
上記のコードをという名前のファイルに保存します CreateTable.java. 次のようにコマンドプロンプトからコンパイルして実行します-
$javac CreateTable.java
$java CreateTable
名前の付いたWordファイルを生成します createtable.docx 現在のディレクトリで、コマンドプロンプトに次の出力を表示します-
createtable.docx written successfully
ザ・ createtable.docx ファイルは次のようになります-