Un archivo csv es un plain text con los valores separados con "comas" por lo que es fácil su lectura y manipulación podrías hacer algo como esto:
Código Java:
Ver original
// Will hold the csv data.
// Open the connection to the resource.
if (url != null) {
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null) {
// You can process the records right here.
// row is an array that holds individual values of the record.
row = line.split(",");
sb.append(line + "\n");
}
is.close();
// Now here's the info. You can do whatever you like with it.
data = sb.toString();
}
return data;
}
Saludos