Skip to content

Instantly share code, notes, and snippets.

View lpbove's full-sized avatar

Luca Ponte Bove lpbove

  • Barcelona
View GitHub Profile
public CSVProcessor(String path, String regex)throws CSVProcessorException{
try{
br = new BufferedReader(new FileReader(path));
}catch(java.io.FileNotFoundException e){
throw new CSVProcessorException("error path");
}
this.path=path;
this.regex=regex;
readFile();
}