Tagged Questions
0
votes
2answers
196 views
Reading CSV file without third-party libraries
I'm trying to read a csv file into either an ArrayList or a String [][] array. In this I'm trying to read it into a list and then form the list, using a tokenizer, into an array. The csv file have 7 ...
1
vote
2answers
275 views
WHERE condition for “starts with any of the values in a CSV list” [duplicate]
Possible Duplicate:
how to convert csv to table in oracle
I have a query in PL/SQL that is built to handle input in a variable as a "starts-with" filter:
WHERE product_group LIKE ...
0
votes
2answers
1k views
skip inserting first line of csv file
I have a method that takes data from a .csv file and puts it into an array backwards
(first row goes in last array slot) however I would like the first row in the .csv file to not be in the array. ...
1
vote
1answer
504 views
how to seperate a csv file using commas if it has null values and we need data corresponding to upper column?
My code is
BufferedReader fileReader = new BufferedReader(new FileReader(strFileName));
while ((strLine = fileReader.readLine()) != null) {
// [2011.06.28] based on ...
2
votes
3answers
3k views
Parsing Data from CSV to Array in Java
I'm trying to import a CSV file into an array that I can use within a Java program. The CSV file has successfully imported itself and the output appears on Terminal but it throws the error:
Exception ...