官术网_书友最值得收藏!

Reading contents from text files all at once using Java 8

On many occasions, data scientists have their data in text format. There are many different ways to read text file contents, and they each have their own pros and cons: some of them consume time and memory, while some are fast and do not require much computer memory; some read the text contents all at once, while some read text files line by line. The choice depends on the task at hand and a data scientist's approach to that task.

This recipe demonstrates how to read text file contents all at once using Java 8.

How to do it...

  1. First, create a String object to hold the path and name of the text file you are going to read:
            String file = "C:/dummy.txt";  
    
  2. Using the get() method of the Paths class, we get to the path of the file we are trying to read. The parameter for this method is the String object that points to the name of the file. The output of this method is fed to another method named lines(), which is in the Files class. This method reads all lines from a file as a Stream, and therefore, the output of this method is directed to a Stream variable. Because our dummy.txt file contains string data, the generics of the Stream variable is set to String.

The entire process of reading needs a try...catch block for attempts such as reading a file that does not exist or damaged and so on.

The following code segment displays the contents of our dummy.txt file. The stream variable contains the lines of the text file, and therefore, the forEach() method of the variable is used to display each line content:

        try (Stream<String> stream = Files.lines(Paths.get(file))) { 
        stream.forEach(System.out::println); } catch (IOException e) { 
        System.out.println("Error reading " +  file.getAbsolutePath()); 
        } 
主站蜘蛛池模板: 阆中市| 安阳县| 静乐县| 西乌珠穆沁旗| 叶城县| 鹤壁市| 宜城市| 商丘市| 宿州市| 鹰潭市| 明光市| 永城市| 建瓯市| 兴和县| 普兰县| 汝州市| 陵水| 阳江市| 巴林右旗| 嘉禾县| 包头市| 兴国县| 华亭县| 桂东县| 黔西县| 房产| 贵南县| 湟源县| 永寿县| 治多县| 张家川| 环江| 丰台区| 无锡市| 海门市| 无为县| 虹口区| 湖口县| 仙居县| 武功县| 茌平县|