我正在尝试在已创建表格的Excel工作表(xlsx)中编写动态数据,基于此我们使用宏在Excel中绘制图表。
我正在使用POI来写数据。
表格中的表格已设置为10行。当我写入超过10行的数据时,表格不会扩展。因此,绘制的图表包含仅对应10行的数据。
如何编写数据,以便数据始终将表格扩展为数据中的行数?
答案 0 :(得分:5)
您应该从XSSFTable
创建一个sheet.createTable();
对象。
以下是我在http://thinktibits.blogspot.co.il/2014/09/Excel-Insert-Format-Table-Apache-POI-Example.html找到的示例 - 只需确保创建的表格涵盖了您动态放置在文件中的所有行/列。
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.*;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.util.AreaReference;
import org.apache.poi.ss.util.CellReference;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFTable;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTable;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableColumn;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableColumns;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyleInfo;
public class insertTable
{
public static void main(String[] args)
throws FileNotFoundException, IOException
{
/* Read the input file that contains the data to be converted to table */
FileInputStream input_document = new FileInputStream(new File("FormatAsTable.xlsx"));
/* Create Workbook */
XSSFWorkbook my_xlsx_workbook = new XSSFWorkbook(input_document);
/* Read worksheet */
XSSFSheet sheet = my_xlsx_workbook.getSheetAt(0);
/* Create Table into Existing Worksheet */
XSSFTable my_table = sheet.createTable();
/* get CTTable object*/
CTTable cttable = my_table.getCTTable();
/* Define Styles */
CTTableStyleInfo table_style = cttable.addNewTableStyleInfo();
table_style.setName("TableStyleMedium9");
/* Define Style Options */
table_style.setShowColumnStripes(false); //showColumnStripes=0
table_style.setShowRowStripes(true); //showRowStripes=1
/* Define the data range including headers */
AreaReference my_data_range = new AreaReference(new CellReference(0, 0), new CellReference(5, 2));
/* Set Range to the Table */
cttable.setRef(my_data_range.formatAsString());
cttable.setDisplayName("MYTABLE"); /* this is the display name of the table */
cttable.setName("Test"); /* This maps to "displayName" attribute in <table>, OOXML */
cttable.setId(1L); //id attribute against table as long value
/* Add header columns */
CTTableColumns columns = cttable.addNewTableColumns();
columns.setCount(3L); //define number of columns
/* Define Header Information for the Table */
for (int i = 0; i < 3; i++)
{
CTTableColumn column = columns.addNewTableColumn();
column.setName("Column" + i);
column.setId(i+1);
}
/* Write output as File */
FileOutputStream fileOut = new FileOutputStream("Excel_Format_As_Table.xlsx");
my_xlsx_workbook.write(fileOut);
fileOut.close();
}
答案 1 :(得分:2)
虽然这个问题有点陈旧,但我花了4个多小时来解决这个问题,所以我认为发布它可能有所帮助。这会改变现有表而不是创建新表。
// tell your xssfsheet where its content begins and where it ends
((XSSFWorksheet) sheet).getCTWorksheet().getDimension()
.setRef("A1:H" + (sheet.getLastRowNum() + 1));
CTTable ctTable = sheet.getTables().get(0).getCTTable();
ctTable.setRef("A1:H" + (sheet.getLastRowNum() + 1)); // adjust reference as needed
ctTable.unsetSortState(); // if you had sorted the data in Excel before reading the file,
// you may want an unsorted table in your output file
CTTableColumns ctColumns = ctTable.getTableColumns(); // setting new table columns will
// muck everything up,
// so adjust the existing ones
// remove the old columns first if you plan on expanding your table in the column direction
for (int i = 0; i < ctColumns.getCount(); i++) {
ctColumns.removeTableColumn(0);
}
// throw in your new columns
for (int i = 0; i < tableHeaders.size(); i++) {
CTTableColumn column = ctColumns.addNewTableColumn();
column.setName(tableHeaders.get(i));
column.setId(i + 1);
}
// for some reason this isn't being take care of when columns are modified,
// so fix the column count manually
ctColumns.setCount(tableHeaders.size());
警告:如果表中不存在相应的属性,unsetX
中的所有CTTable
方法都将抛出IndexOutOfBoundsException
,因此它们需要是try-catch -ed。 @Gagravarr在评论中提到的另一种方法是首先使用isSetX
,然后不需要try
。
如果这不起作用,那么你可能在表中设置了许多其他东西。不幸的是,低级XML内容(封装在所有这些CT对象中)的文档很少,因为它显然是从规范自动生成的,因此API非常不透明。我经历的磨牙过程是弄清楚要使用的是解压缩.xlsx,查看我需要调整的XML,找出它在我的XSSFSheet中的位置以及我需要如何调整它,然后去寻找合适的CT方法,因为XSSF-API并没有真正让你做那么多。通过这种方式,你可以创建几乎任何你能在Excel中创建的东西,甚至可以改变一些你不能在那里做的东西 - 如果你有时间和神经的话。