Hi i have a small problem and think i'm just not getting the correct syntax on one line of code. basically, i can write into my csv file and find a specific record using string tokenizer but it is not updating/editing the specified cells of that record. the record remains the same. please help....
|
|
You're doing something like this:
This is not editing the file, it's creating a new string from a line in the file.
Either use a file stream that allows you to both read and write to the file - i.e. RandomAccessFile or (more simply) write to a new file then replace the old file with the new one In psuedo code:
Also, please take a look at this question. There are libraries to help you deal with csv. |
|||||
|
|
CSV file is just a file. It is not being changed if you are reading it. So, write your changes! You have 3 ways. 1
2Use RandomAccess file to write into specific place of the file. 3Use one of available implementations of CSV parser (e.g. http://commons.apache.org/sandbox/csv/) It already supports what you need and exposes high level API. |
|||
|
|
|
ok i am doing something like this. i can access the csv record pointed to by tokens but it does not update i think incorrect syntax
|
|||||
|