Reputation: 1318
I'm trying to apply this cell format in ApachePOI:
XSSFCellStyle cellStyle = myWorkBook.createCellStyle();
XSSFDataFormat format = myWorkBook.createDataFormat();
cellStyle.setDataFormat(format.getFormat("h:mm:ss,000"));
But when I open Excel, gives this error: "Style from /xl/styles.xml part (styles) Undreadable Content"
Upvotes: 1
Views: 196