February 2014
Beginner
1248 pages
62h 25m
English
A Java program opens a file by creating an object and associating a stream of bytes or characters with it. The object’s constructor interacts with the operating system to open the file. Java can also associate streams with different devices. When a Java program begins executing, it creates three stream objects that are associated with devices—System.in, System.out and System.err. The System.in (standard input stream) object normally enables a program to input bytes from the keyboard. Object System.out (the standard output stream object) normally enables a program to output character data to the screen. Object System.err (the standard error stream object) normally enables a program to ...
Read now
Unlock full access