Java reading a file different methods

Lets start at the beginning. The question is what do you want to do?

It’s important to understand what a file actually is. A file is a collection of bytes on a disc, these bytes are your data. There are various levels of abstraction above that that Java provides:

  1. File(Input|Output)Stream – read these bytes as a stream of byte.
  2. File(Reader|Writer) – read from a stream of bytes as a stream of char.
  3. Scanner – read from a stream of char and tokenise it.
  4. RandomAccessFile – read these bytes as a searchable byte[].
  5. FileChannel – read these bytes in a safe multithreaded way.

On top of each of those there are the Decorators, for example you can add buffering with BufferedXXX. You could add linebreak awareness to a FileWriter with PrintWriter. You could turn an InputStream into a Reader with an InputStreamReader (currently the only way to specify character encoding for a Reader).

So – when wouldn’t I want to use it [a Scanner]?.

You would not use a Scanner if you wanted to, (these are some examples):

  1. Read in data as bytes
  2. Read in a serialized Java object
  3. Copy bytes from one file to another, maybe with some filtering.

It is also worth nothing that the Scanner(File file) constructor takes the File and opens a FileInputStream with the platform default encoding – this is almost always a bad idea. It is generally recognised that you should specify the encoding explicitly to avoid nasty encoding based bugs. Further the stream isn’t buffered.

So you may be better off with

try (final Scanner scanner = new Scanner(new BufferedInputStream(new FileInputStream())), "UTF-8") {
    //do stuff
}

Ugly, I know.

It’s worth noting that Java 7 Provides a further layer of abstraction to remove the need to loop over files – these are in the Files class:

byte[] Files.readAllBytes(Path path)
List<String> Files.readAllLines(Path path, Charset cs)

Both these methods read the entire file into memory, which might not be appropriate. In Java 8 this is further improved by adding support for the new Stream API:

Stream<String> Files.lines(Path path, Charset cs)
Stream<Path> Files.list(Path dir)

For example to get a Stream of words from a Path you can do:

    final Stream<String> words = Files.lines(Paths.get("myFile.txt")).
            flatMap((in) -> Arrays.stream(in.split("\\b")));

Leave a Comment