Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to read a CSV file in Android, but for rows with some blank columns, CSV writes something like this:

,,,,ABC,,,d,mfcmf,fgt,

When I tokenize the above line I get ABC as the first string, when I need "" (i.e. an empty string).

How can I tokenize CSV rows, but have blank columns show up in the results as empty strings?

First_column  = "";
Second_column = "";
Third_column  = "";
Forth_column  = "";
Fifth_column  = "ABC";
share|improve this question
What does "consigative" mean? – Paul D. Waite Jan 3 at 11:23
1  
oops spell mistack,The same character one after anather,Like AA BB etc. – user1035089 Jan 3 at 11:27
Ah! "Consecutive". – Paul D. Waite Jan 3 at 11:28
Ya consecutive,:-) – user1035089 Jan 3 at 11:29

1 Answer

You could write your own little parser or use a CSV library. To simply split the string on comma characters does not work if there are embedded commas in a field like here

a,1,"some , in string",12

One library that could be used in Apache Commons CSV

share|improve this answer
i to do that i am very new bies in java. – user1035089 Jan 3 at 11:36
added a link to a library – Henry Jan 3 at 11:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.