4445464748495051525354
{ UICell cell = new UICell(); cell.setValue(i + "_" + j); wb.addItem(cell); } wb.nextColumn(); } byte[] correct = new String("\"0_0\",\"1_0\"\n\"0_1\",\"1_1\"\n").getBytes(); byte[] created = wb.getBytes();
108109110111112113114115116117118
{ UICell cell = new UICell(); cell.setValue(i + "_" + j); wb.addItem(cell); } wb.nextColumn(); } sheet.setStartColumn(1); sheet.setStartRow(1); wb.createOrSelectWorksheet(sheet);
123124125126127128129130131132133
{ UICell cell = new UICell(); cell.setValue(i + "_" + j); wb.addItem(cell); } wb.nextColumn(); } byte[] correct = new String("\"0_0\",\"1_0\",\"\"\n\"0_1\",\"0_0\",\"1_0\"\n\"\",\"0_1\",\"1_1\"\n").getBytes(); byte[] created = wb.getBytes();