Hi all,
I can create an Excel Workbook with no problems if I'm creating a cell with "1234" in it.
I used the CreateSimpleSpreadsheet.java example from the following URL:
http://www.docx4java.org/trac/docx4j/browser/trunk/docx4j/src/xlsx4j/java/org/xlsx4j/samples
private static void addContent(WorksheetPart sheet) throws Exception {
// minimal content already present
SheetData sheetData = sheet.getJaxbElement().getSheetData();
// add stuff
Row row = Context.getsmlObjectFactory().createRow();
Cell cell = Context.getsmlObjectFactory().createCell();
cell.setV("1234");
Cell cell2 = Context.getsmlObjectFactory().createCell();
cell2.setV("ABC"); ///// doesn't like this String value, but is OK with ...