I would like to copy a sheet from an existing XLS document to a new one to a new location. How could I do this with JXL?
Workbook w1 = Workbook.getWork
if (readFormat != null) { WritableCellFormat newFormat = new WritableCellFormat(readFormat); newCell.setCellFormat(newFormat); newSheet.addCell(newCell); }