poi 删除表格,docx 版 /** * 删除表格 * @param table 表格对象 */ public static void deleteTable(XWPFTable table){ List<XWPFTableRow> rows = table.getRows(); int rowLength = rows.size(); for (int i = 0; i < rowLength; i++) { table.removeRow(0); } }