tengo ploblemas con la paqueteria "jxl" en netBeansespero y puedan ayudarme
public class Generar { public void GenerarExcel(String[][] entrada, String ruta){ try { WorkbookSettings conf = new WorkbookSettings(); conf.getEncoding(); WritableWorkbook woorBook = Workbook.createWorkbook(new File(ruta), conf); WritableSheet sheet= woorBook.createSheet("resultado", 0); WritableFont h= new WritableFont(WritableFont.COURIER, 16,WritableFont.NO_BOLD); WritableCellFormat hFormat = new WritableCellFormat((CellFormat) h); for (int i=0; i< entrada.length;i++){//FILAS for (int j=0; j< entrada[i].length;j++){ sheet.addCell(new jxl.Write.Label(j,i, entrada[i][j], hFormat)); } } woorBook.write(); try{ woorBook.close(); }catch (WriteException ex) { Logger.getLogger(Generar.class.getName()).log(Level.SEVERE, null, ex); }
Guenas.
Gracias por explicar tu problema.En el foro de JAVA SE también necesitan un médium.
Un saludo, Paposo
tengo ploblemas con la paqueteria "jxl" en netBeans
espero y puedan ayudarme
public class Generar {
public void GenerarExcel(String[][] entrada, String ruta){
try {
WorkbookSettings conf = new WorkbookSettings();
conf.getEncoding();
WritableWorkbook woorBook = Workbook.createWorkbook(new File(ruta), conf);
WritableSheet sheet= woorBook.createSheet("resultado", 0);
WritableFont h= new WritableFont(WritableFont.COURIER, 16,WritableFont.NO_BOLD);
WritableCellFormat hFormat = new WritableCellFormat((CellFormat) h);
for (int i=0; i< entrada.length;i++){//FILAS
for (int j=0; j< entrada[i].length;j++){
sheet.addCell(new jxl.Write.Label(j,i, entrada[i][j], hFormat));
}
}
woorBook.write();
try{
woorBook.close();
}catch (WriteException ex) {
Logger.getLogger(Generar.class.getName()).log(Level.SEVERE, null, ex);
}