[Java] Files.readAllLines 사용법
2024. 6. 19. 21:38ㆍWebBack/Java
Files.readAllLines란?
파일의 모든 줄을 읽어서 List<String> 형태로 반환하는 메서드
Files 클래스에 정의되어 있음
메서드 요약
public static List<String> readAllLines(Path path, Charset cs) throws IOException {
try (BufferedReader reader = newBufferedReader(path, cs)) {
List<String> result = new ArrayList<>();
for (;;) {
String line = reader.readLine();
if (line == null)
break;
result.add(line);
}
return result;
}
}
public static List<String> readAllLines(Path path) throws IOException {
return readAllLines(path, UTF_8.INSTANCE);
}
이 메서드는 다음과 같은 매개 변수를 받는다.
1. (Path 객체)
2. (Path 객체, Charset 객체)
메서드 사용법
Files.readAllLines은 다음과 같이 사용된다.
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.nio.charset.StandardCharsets;
public class test {
public static void main(String[] args) {
Path path = Paths.get("example.txt");
try {
// 파일의 모든 줄을 읽고 리스트로 반환
List<String> lines = Files.readAllLines(path, StandardCharsets.UTF_8);
// 읽은 내용 출력
for (String line : lines) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
참고로 StandardCharsets.UTF_8은 UTF-8인코딩을 가리킨다.
이는 파일을 읽을 때에 사용할 문자 인코딩을 지정한다.
UTF-8은 호환성과 범용성이 높아 많이 사용된다.
'WebBack > Java' 카테고리의 다른 글
[Java] LocalDate.getMonth, getMonthValue (0) | 2024.06.25 |
---|---|
[Java] LocalDate.parse 메서드 사용법 (0) | 2024.06.19 |
[Java] DateTimeFormatter.ofPattern 사용법 (0) | 2024.06.19 |
[Java] Paths 사용법 (get, getFileName, getParent, toAbsolutePath) (0) | 2024.06.19 |
[Java] 스레드(thread) - run, start, I/O블락킹, setPriority (0) | 2024.06.18 |