자바 바이트 흐름 출력 흐름 FileOutputStream 및 흐름 이상 처리
https://docs.oracle.com/javase/8/docs/api/org/omg/CORBA/portable/OutputStream.html
/**
* OutputStream: , ,
* write(int b)
* write(byte[] b)
* write(byte[] b,int,int), ,int, ,int,
* fulsh(); , ,
* close(); , ,
*
* :FileOutputStream,
*
* FileOutputStream("D:\\a.txt");
* FileOutputStream(File file);
* FileOutputStream("D:\\a.txt",true);true:
* FileOutputStream(File file,true);true:
*/
public static void main(String[] args) throws IOException {
//writeFile();
//keepWriteFile();
getException();
}
/**
*
* , , ,U ....
*/
private static void getException() {
FileOutputStream fos = null;//
try {
// , catch, close() try , finally
fos = new FileOutputStream("D:\\a.txt");
fos.write("Hello".getBytes());
} catch (IOException e) {
throw new RuntimeException(" ! :
"+e.getMessage());
}finally{
try {
if(fos != null)//
fos.close();
} catch (IOException e) {
throw new RuntimeException(" ! :
"+e.getMessage());
}
}
}
/**
*
* FileOutputStream(File file,true) FileOutputStream("D:\\a.txt",true);
* \r
*/
private static void keepWriteFile() throws IOException {
File file = new File("D:\\a.txt");
FileOutputStream fos = new FileOutputStream(file,true);// true, false
fos.write("Hello".getBytes());
fos.write("\r
World".getBytes());
fos.close();
System.out.println(" ");
}
/**
*
*/
private static void writeFile() throws IOException {
// , , ,
FileOutputStream fos = new FileOutputStream("D:\\a.txt");
//
// fos.write(100);// d, ASCLL
// 100 ASCLL
/*
* fos.write(49); fos.write(48); fos.write(48);
*/
// byte
byte[] b = { 65, 66, 67, 68, };
// fos.write(b);
// fos.write(b,1,2);
//
fos.write("Hello".getBytes());
fos.close();
System.out.println(" ");
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WeakHashMap,IdentityHashMap,EnumMap다른 맵 구현 클래스와 달리 WeakHashMap 클래스의 키 대상은 간접적으로 약한 인용의 지시 대상으로 저장되며, 키가 정상적으로 사용되지 않을 때 자동으로 항목을 제거합니다.더 정확히 말하면, 주어진 키에 대한...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.