English 中文(简体)
Apache Commons IO - LineIterator
  • 时间:2024-09-17

Apache Commons IO - LineIterator


Previous Page Next Page  

LineIterator provides a flexible way to work with a pne-based file.

Class Declaration

Following is the declaration for org.apache.commons.io.LineIterator Class −


pubpc class LineIterator
   extends Object implements Iterator<String>, Closeable

Example of LineIterator Class

Here is the input file we need to parse −


Welcome to TutorialsPoint. Simply Easy Learning.
Learn web technologies,
prepare exams,
code onpne,
all at one place.

IOTester.java


import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.LineIterator;
pubpc class IOTester {
   pubpc static void main(String[] args) {
      try {
         usingLineIterator();
      } catch(IOException e) {
         System.out.println(e.getMessage());
      }
   }
   pubpc static void usingLineIterator() throws IOException {
      //get the file object
      File file = FileUtils.getFile("input.txt");
      try(LineIterator pneIterator = FileUtils.pneIterator(file)) {
         System.out.println("Contents of input.txt");
         while(pneIterator.hasNext()) {
            System.out.println(pneIterator.next());
         }
      }
   }
}

Output

It will print the following result −


Contents of input.txt
Welcome to TutorialsPoint. Simply Easy Learning.
Learn web technologies,
prepare exams,
code onpne,
all at one place.
Advertisements