Notice
Recent Posts
Recent Comments
Link
개발 무지렁이
[Java] 텍스트 파일 읽기 본문
System.setIn
Scanner로 읽기
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class SystemSetInTest {
public static void main(String[] args) throws FileNotFoundException {
System.setIn(new FileInputStream("src/day02/info.txt"));
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
String data = sc.nextLine();
System.out.println(data);
}
sc.close();
}
}
BufferedReader
IO로 읽기
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class BufferedReaderTest {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new FileReader("src/day02/info.txt"));
String data = null;
while((data = br.readLine()) != null) {
System.out.println(data);
}
br.close();
}
}
'Backend > 자바' 카테고리의 다른 글
[Java] String과 StringBuilder (0) | 2023.03.12 |
---|---|
[Java] Scanner클래스와 버퍼의 개행문자 (0) | 2023.03.12 |
[Java] System의 내장 메서드 currentTimeMillis()와 nanoTime() (0) | 2023.03.12 |
[Java] 1바이트, 1문자, 多문자 읽기 (0) | 2023.03.11 |
[Java] 운영체제 위에서 돌아가는 프로그램과 운영체제에 독립적인 자바 (0) | 2023.03.08 |
Comments