Convertendo documentos Excel em arquivos CSV

Aprenda a converter arquivos Excel em arquivos do tipo CSV.

Convertendo documentos Excel em arquivos CSV

A API JExcelAPI permite aos desenvolvedores Java ler/gerar Excel spreadsheets dinamicamente. Uma outra possibilidade de armazenar dados do Excel, é através de arquivos com formato CSV.

O exemplo de código abaixo, lê um documento Excel e o converte para um arquivo do tipo CSV.

import java.io.*; import jxl.*; import java.util.*; class ConvertCSV { public static void main(String[] args) { try { //Arquivo para armazenar dados no formato csv File f = new File("entrada.csv"); OutputStream os = (OutputStream)new FileOutputStream(f); String encoding = "UTF8"; OutputStreamWriter osw = new OutputStreamWriter(os, encoding); BufferedWriter bw = new BufferedWriter(osw); //Documento Excel a ser importado String filename = "entrada.xls"; WorkbookSettings ws = new WorkbookSettings(); ws.setLocale(new Locale("en", "EN")); Workbook w = Workbook.getWorkbook(new File(filename),ws); // Obtém as folhas do arquivo excel for (int sheet = 0; sheet < w.getNumberOfSheets(); sheet++) { Sheet s = w.getSheet(sheet); bw.write(s.getName()); bw.newLine(); Cell[] row = null; // Obtém as células das folhas for (int i = 0 ; i < s.getRows() ; i++) { row = s.getRow(i); if (row.length > 0) { bw.write(row[0].getContents()); for (int j = 1; j < row.length; j++) { bw.write(','); bw.write(row[j].getContents()); } } bw.newLine(); } } bw.flush(); bw.close(); } catch (UnsupportedEncodingException e) { System.err.println(e.toString()); } catch (IOException e) { System.err.println(e.toString()); } catch (Exception e) { System.err.println(e.toString()); } } }
Ebook exclusivo
Dê um upgrade no início da sua jornada. Crie sua conta grátis e baixe o e-book

Artigos relacionados