How do you read and display data from .txt files?
feedback
|
Then, you can use in.readLine(); to read a single line at a time. To read until the end, write a while loop as such:
| |||
|
feedback
|
|
If your file is strictly text, I prefer to use the You can create a
Then, you can read text from the file using the methods:
And, you can check if there is any more text left with:
Once you have read the text, and saved it into a
The posted link contains the full specification for the Scanner class. It will be helpful to assist you with what ever else you may want to do. | |||||||||||
feedback
|
|
In general:
If you need more help than that, please be more specific in your question. | |||
|
feedback
|
|
I love this piece of code, use it to load a file into one String:
| ||||
|
feedback
|
|
If you want to take some shortcuts you can use Apache Commons IO:
:-) | |||
|
feedback
|
|
You most likely will want to use the FileInputStream class:
You will also want to catch some of the exceptions thrown by the read() method and FileInputStream constructor, but those are implementation details specific to your project. | |||
feedback
|