Java - Read File by Scanner

최대 1 분 소요

Java - Read File by Scanner

  • 흔히 시스템 입출력(System.in)에서 사용하는 ScannerFile을 넘겨서 사용할 수도 있습니다.
  • test.txt에는 다음과 같이 데이터가 담겨 있다고 하고요.
Word
This Is Text File
  • 아래 코드에서처럼 FileScanner에 넘겨주면.
import java.io.File;
import java.util.*;

class Main {
    public static void main(String[] args) throws Exception {
        File fileToRead = new File("test.txt");
        Scanner scanner = new Scanner(fileToRead);

        while ( scanner.hasNext() ) {
            System.out.println(scanner.nextLine());
        }
    }
}
  • 결과가 잘 나옵니다.
Word
This Is Text File

댓글남기기