Java IO Tutorial - Java Files.readAllBytes(Path path)








Syntax

Files.readAllBytes(Path path) has the following syntax.

public static byte[] readAllBytes(Path path)    throws IOException

Example

In the following code shows how to use Files.readAllBytes(Path path) method.

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
/*from ww w  .ja  v  a  2  s .  c  o  m*/
public class Main {

  public static void main(String[] args) {

    Path wiki_path = Paths.get("C:/tutorial/wiki", "wiki.txt");

    try {
      byte[] wikiArray = Files.readAllBytes(wiki_path);

      String wikiString = new String(wikiArray, "ISO-8859-1");
      System.out.println(wikiString);
    } catch (IOException e) {
      System.out.println(e);
    }

  }
}