Atualização: o código nesta resposta é para Super CSV 1.52. Exemplos de código atualizados para o Super CSV 2.4.0 podem ser encontrados no site do projeto:
http://super-csv.github.io/super-csv/index.html
O projeto SuperCSV suporta diretamente a análise e manipulação estruturada de células CSV. Em http://super-csv.github.io/super-csv/examples_reading.html, você encontrará, por exemplo
dada uma aula
public class UserBean {
String username, password, street, town;
int zip;
public String getPassword() { return password; }
public String getStreet() { return street; }
public String getTown() { return town; }
public String getUsername() { return username; }
public int getZip() { return zip; }
public void setPassword(String password) { this.password = password; }
public void setStreet(String street) { this.street = street; }
public void setTown(String town) { this.town = town; }
public void setUsername(String username) { this.username = username; }
public void setZip(int zip) { this.zip = zip; }
}
e que você tem um arquivo CSV com um cabeçalho. Vamos assumir o seguinte conteúdo
username, password, date, zip, town
Klaus, qwexyKiks, 17/1/2007, 1111, New York
Oufu, bobilop, 10/10/2007, 4555, New York
Você pode criar uma instância do UserBean e preenchê-la com valores da segunda linha do arquivo com o seguinte código
class ReadingObjects {
public static void main(String[] args) throws Exception{
ICsvBeanReader inFile = new CsvBeanReader(new FileReader("foo.csv"), CsvPreference.EXCEL_PREFERENCE);
try {
final String[] header = inFile.getCSVHeader(true);
UserBean user;
while( (user = inFile.read(UserBean.class, header, processors)) != null) {
System.out.println(user.getZip());
}
} finally {
inFile.close();
}
}
}
usando a seguinte "especificação de manipulação"
final CellProcessor[] processors = new CellProcessor[] {
new Unique(new StrMinMax(5, 20)),
new StrMinMax(8, 35),
new ParseDate("dd/MM/yyyy"),
new Optional(new ParseInt()),
null
};