我已经在Word文档中创建了表格,但是我想要的是每行具有动态的列数,例如:row 1-> 1列占用表格的宽度;第2行-> 4列。提前感谢。
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 AnswerList_Word {
public static void main(String[] args) {
XWPFDocument doc =new XWPFDocument();
try {
XWPFTable tab = doc.createTable();
//first row
XWPFTableRow row = tab.getRow(0);
row.getCell(0).setText("cell 1");
//Second row
row = tab.createRow();
row.getCell(0).setText("cell 1.1");
row.addNewTableCell().setText("cell 1.2");
FileOutputStream output = new FileOutputStream("AnswersListTest.docx");
doc.write(output);
output.close();
System.out.println("Le document word a été créé avec succès");
} catch (Exception e) {
e.printStackTrace();
}
}
}
我希望第一行的一列占据表格的所有宽度,但是我却在第一行中拥有第一列,第二列有一个空白处。