// IOException 반드시 처리해줘야 함
public static String getTemplateFile() throws IOException{
// 파일 내용 전체를 담을 문자열
String contents = "";
// try (..) 이 안에서 파일을 열어주면 마지막에 finally 없어도 됨
try (FileReader fr = new FileReader("파일 경로/파일명");
BufferedReader br = new BufferedReader(fr);) {
String readLine = "";
while ((readLine = br.readLine()) != null) {
contents += readLine;
}
} catch (IOException e) {
e.printStackTrace();
}
return contents;
}
'프로그래밍 언어 > Java' 카테고리의 다른 글
Java) timeStamp 만들기 (0) | 2021.07.29 |
---|---|
Java) 문자열 파일에 저장하기 (0) | 2021.07.01 |
Week14) Java Programming Lab : Socket Programming (0) | 2021.05.28 |
Week12) Java Programming Lab : Generic Collections (0) | 2021.05.12 |
Week11) Java Programming Lab : File I/O (0) | 2021.05.05 |