return load(provider, in);
}
public DataSet load(DataProvider provider, InputStream is) throws Exception {
CSVDataSet newDs = create(provider, is);
newDs.load();
return newDs;
}
public CSVDataSet create(DataProvider provider, InputStream in) throws Exception {
File f = File.createTempFile("csv_temp.", ".csv");