Diego_Marinho
Cara, vê se isso te ajuda.
se vc estiver usando uma API chamada Apache POI, tenta desse jeito:
HSSFWorkbook wb = new HSSFWorkbook();
FileOutputStream fileOut = new FileOutputStream(“workbook.xls”);
wb.write(fileOut);
fileOut.close();
HSSFSheet sheet = wb.createSheet();
HSSFRow row = sheet.createRow((short)0);
HSSFCell cell = row.createCell((short)0);
cell.setCellValue(1);
row.createCell((short)1).setCellValue(1.2);
row.createCell((short)2).setCellValue(“This is a string”);
row.createCell((short)3).setCellValue(true);
ou entao consulta:
http://onjava.com/pub/a/onjava/2003/04/16/poi_excel.html
[]'s.
fabricioempresa
Bah eu nao estou usando essa api ai nao eu uso jexcelapi que nao eh la mtu boa huauhauhauha
olhei o link mas como eh != a bilbioteca nao deu ai vlw