I'm writing up a program that goes into a basic .txt file and prints certain things. It is a comma-deliminated file. The file includes 7 first and last names, and also 4 numbers after. Each of the seven on a separate line. Each line looks like this: George Washington, 7, 15, 20, 14. The program has to grab the last name and then average the 4 numbers, but also average the first from all seven, second from all seven, etc. I'm not sure on how to start approaching this and get it to keep grabbing and printing what's necessary. Thanks for any help. I appreciate it.
|
|
||||
|
|
|
Hint: Tutorial: Extract of relevance from the tutorial:
|
|||
|
|
|
A scatch:
|
|||||
|
|
Hint:
|
|||||||||||
|
|
|||
|
|
|
I'd personally recommend looking at the split method for strings (so you could break up a line into an array of strings) Or stringTokenizer as Brian suggested. The rest is just calculations and having an array to store it in. |
||||
|
|
There are some things to consider: The files on your disk are stored as a sequence of bytes, but when processing text, you need sequences of characters. Therefore, when loading the file, you need to convert the bytes to characters. This can be simply done using these three types:
The buffered reader provides a method Then you would process one line of input at a time. You Now you have an array of fields. The first field is the name, which you can use as is. The other fields need to be converted to integer numbers, which can be done with When you have read all lines, you should close the file. |
|||||||||
|
