Apache Commons IO-LineIterator
LineIterator는 라인 기반 파일로 작업하는 유연한 방법을 제공합니다. 이 장에서 이에 대해 배워 보자.
클래스 선언
다음은에 대한 선언입니다. org.apache.commons.io.LineIterator 클래스-
public class LineIterator
extends Object implements Iterator<String>, Closeable
LineIterator 클래스의 예
다음은 파싱해야하는 입력 파일입니다.
Welcome to TutorialsPoint. Simply Easy Learning.
Learn web technologies,
prepare exams,
code online,
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;
public class IOTester {
public static void main(String[] args) {
try {
usingLineIterator();
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
public static void usingLineIterator() throws IOException {
//get the file object
File file = FileUtils.getFile("input.txt");
try(LineIterator lineIterator = FileUtils.lineIterator(file)) {
System.out.println("Contents of input.txt");
while(lineIterator.hasNext()) {
System.out.println(lineIterator.next());
}
}
}
}
산출
다음 결과를 인쇄합니다-
Contents of input.txt
Welcome to TutorialsPoint. Simply Easy Learning.
Learn web technologies,
prepare exams,
code online,
all at one place.