반응형
해결 방법
아래의 코드 샘플은 이미 존재하는 경우 파일을 덮어 씁니다
텍스트 파일 만들기 :
PrintWriter writer = new PrintWriter("the-file-name.txt", "UTF-8");
writer.println("The first line");
writer.println("The second line");
writer.close();
바이너리 파일 만들기 :
byte data[] = ...
FileOutputStream out = new FileOutputStream("the-file-name");
out.write(data);
out.close();
텍스트 파일 만들기 :
List<String> lines = Arrays.asList("The first line", "The second line");
Path file = Paths.get("the-file-name.txt");
Files.write(file, lines, StandardCharsets.UTF_8);
//Files.write(file, lines, StandardCharsets.UTF_8, StandardOpenOption.APPEND);
바이너리 파일 만들기 :
byte data[] = ...
Path file = Paths.get("the-file-name");
Files.write(file, data);
//Files.write(file, data, StandardOpenOption.APPEND);
참조 페이지 https://stackoverflow.com/questions/2885173
반응형
'자바' 카테고리의 다른 글
Java에서 다른 생성자를 어떻게 호출합니까? (0) | 2021.04.14 |
---|---|
SerialVersionUID는 무엇이며 왜 그것을 사용해야합니까? (0) | 2021.04.14 |
"비 정적 메소드가 정적 컨텍스트에서 참조 할 수 없음"이유는 무엇입니까? (0) | 2021.04.14 |
정규 표현식에서 "어떤 문자"와 일치하는 방법은 무엇입니까? (0) | 2021.04.14 |
JPanel에 이미지를 추가하는 방법? (0) | 2021.04.14 |
댓글