Use readAllBytes() method to read a text file - Java File Path IO

Java examples for File Path IO:File Operation

Description

Use readAllBytes() method to read a text file

Demo Code

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {
  public static void main(String[] args) {
    Path wiki_path = Paths.get("C:/folder1/wiki", "wiki.txt");

    try {/*from  w ww .j  a v  a  2 s  . c o  m*/
      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);
    }

  }
}

Result


Related Tutorials