posted 19 years ago
I have a txt file which stores timetable data in this format:
flightnumber, departuredate, departuretime, avaliableseats
so, at the moment the file looks like this:
001, 01.01.05, 09.00, 10
I need to read in this data and then display it. At the moment my code to do this looks like this:
It all compiles etc but wont read in the values. Also, if I wanted to change one of the values in the file (like avaliableSeats ) how would I do this without updating the whole file (ie, just update the one value as opposed to the whole file).
J