Browse Source

sync table headers with worksheet on save

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1416166 13f79535-47bb-0310-9956-ffa450edef68
tags/3.10-beta1
Yegor Kozlov 11 years ago
parent
commit
d3170f4e94
1 changed files with 33 additions and 5 deletions
  1. 33
    5
      src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java

+ 33
- 5
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java View File

* @author Roberto Manicardi * @author Roberto Manicardi
*/ */
public class XSSFTable extends POIXMLDocumentPart { public class XSSFTable extends POIXMLDocumentPart {
private CTTable ctTable; private CTTable ctTable;
private List<XSSFXmlColumnPr> xmlColumnPr; private List<XSSFXmlColumnPr> xmlColumnPr;
private CellReference startCellReference; private CellReference startCellReference;
} }


public void writeTo(OutputStream out) throws IOException { public void writeTo(OutputStream out) throws IOException {
TableDocument doc = TableDocument.Factory.newInstance();
updateHeaders();

TableDocument doc = TableDocument.Factory.newInstance();
doc.setTable(ctTable); doc.setTable(ctTable);
doc.save(out, DEFAULT_XML_OPTIONS); doc.save(out, DEFAULT_XML_OPTIONS);
} }
if(startCellReference==null){ if(startCellReference==null){
String ref = ctTable.getRef(); String ref = ctTable.getRef();
String[] boundaries = ref.split(":");
String from = boundaries[0];
startCellReference = new CellReference(from);
if(ref != null) {
String[] boundaries = ref.split(":");
String from = boundaries[0];
startCellReference = new CellReference(from);
}
} }
return startCellReference; return startCellReference;
} }
} }
return rowCount; return rowCount;
} }

/**
* Synchronize table headers with cell values in the parent sheet.
* Headers <em>must</em> be in sync, otherwise Excel will display a
* "Found unreadable content" message on startup.
*/
public void updateHeaders(){
XSSFSheet sheet = (XSSFSheet)getParent();
CellReference ref = getStartCellReference();
if(ref == null) return;

int headerRow = ref.getRow();
int firstHeaderColumn = ref.getCol();
XSSFRow row = sheet.getRow(headerRow);

if(row != null) for(CTTableColumn col : getCTTable().getTableColumns().getTableColumnList()){
int colIdx = (int)col.getId() - 1 + firstHeaderColumn;
XSSFCell cell = row.getCell(colIdx);
if(cell != null) {
col.setName(cell.getStringCellValue());
}
}

}
} }

Loading…
Cancel
Save