IO_文件字节输入流
还是和文件字节输出一样,四个步骤
1.创建源
2.选择流
3.操作(写入)
4.释放资源
这四个步骤就好比搬家一样,第一步选择要搬那个房子(创建源)
File src = new File("test.txt");
第二步选择搬家公司(选择流)
OutputStream os = null;
os = new FileOutputStream(src,true);
这里的"ture"是在原有的字符后面加,改成"false" 是会把原有的替换掉。
第三步选择用什么搬,这里是用字节(操作)
String msg = "IO is so easy!";
byte[] datas = msg.getBytes();
os.write(datas,0,datas.length);
os.flush();
第四步打发搬家公司(释放资源)
os.close();
以下是完整代码
public class Otest03 {
public static void main(String[] args) {
//1.创建源
File src = new File("src/test.txt");
//2.选择流
OutputStream os = null;
try {
os = new FileOutputStream(src,false); //如果是true在原有的后面加,如果是flass测是替换原有的
//3.操作(写入)
String msg = "IO is so easy!";
byte[] datas = msg.getBytes();//字符串-->字节数组(编码)
try {
os.write(datas,0,datas.length);
os.flush();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
try {
os.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}