package ch03;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
public class FileOutputStreamTest2 {
public static void main(String[] args) throws FileNotFoundException {
FileOutputStream fos = new FileOutputStream("output2.txt",false);
//java9부터 제공되는 기능
try(fos){
byte[] bs= new byte[26];
byte data =65;
for (int i = 0; i < bs.length; i++) {
bs[i] = data;
data++;
}
fos.write(bs);
//문제 1 for문 사용
//길이 26까지 반복해서 A-Z 파일에 작성해 봅시다.
}catch (Exception e) {
}
}
}
'Java > Excercise' 카테고리의 다른 글
javaio ch04 FileWriterTest (0) | 2021.09.13 |
---|---|
javaio ch03 FileOutputStreamTest3 (0) | 2021.09.13 |
javaio ch03 FileOutputStreamTest1 (0) | 2021.09.13 |
javaio ch02 FileInputStreamTest5 (0) | 2021.09.13 |
javaio ch02 FileInputStreamTest4 (0) | 2021.09.13 |