我怎样才能检索excel表格标题行。
我能够检索除表标题行之外的所有行。
代码
private static void printTableContent(final ListObject table) {
System.out.println(table.getShowHeaderRow());
Range range = table.getDataRange();
for (int row = 0; row < range.getRowCount(); row++) {
for (int column = 0; column < range.getColumnCount(); column++) {
System.out.print(range.get(row, column).getDisplayStringValue());
System.out.print("\t");
}
System.out.println();
}
}