In Java how can I take the data of my file on my display screen? I want to use data in my file and also want that data to be displayed on my output screen when I execute my program. Can any body please help by providing me such example in Java language. Thank you!
|
A modified version of this example:
This is not precisely a "best practice" demo ( ie You should not ignore exceptions) , just what you needed: take data from file and display it on the screen" I hope you find it helpful. |
|||
|
This is an "I/O" topic (input/output). The related classes are in If you're reading a simple text file, See alsoSimple exampleThe following code takes a filename from the command line, treating it as a text file, and simply print its content to standard output.
You can compile this, and then run it as, say, For beginners, API links
See also |
|||||
|
|
|||||
|
|