[16] 1바이트 출력
## 1바이트 출력 1 ## import java.io.*; public class _2_1 { public static void main(String[] args) throws IOException{ byte[] by = new byte[]{'R', 'a', 'i', 's', 'o', 'n'}; // 콘솔모드..... FileDescriptor.out: 콘솔에 출력 FileOutputStream fos1 = new FileOutputStream(FileDescriptor.out); fos1.write(by); fos1.write(by,2,1); fos1.write(65); fos1.close(); // 파일 모드..... true : 기존 내용에 추가 FileOutputStream fos2 = new ..
dev/java
2008. 9. 27. 16:24
공지사항
