Apache POI Word - Tableaux
Dans ce chapitre, vous apprendrez à créer une table de données dans un document. Vous pouvez créer des données de table en utilisantXWPFTableclasse. En ajoutant chacunRow à la table et en ajoutant chacun cell à Row, vous obtiendrez des données de table.
Créer une table
Le code suivant est utilisé pour créer un tableau dans un document -
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");
}
}
Enregistrez le code ci-dessus dans un fichier nommé CreateTable.java. Compilez et exécutez-le à partir de l'invite de commande comme suit -
$javac CreateTable.java
$java CreateTable
Il génère un fichier Word nommé createtable.docx dans votre répertoire actuel et affichez la sortie suivante sur l'invite de commande -
createtable.docx written successfully
le createtable.docx le fichier ressemble à ceci -