IO流概述 IO流用来处理设备之间的数据传输 Java对数据的操作是通过流的方式 Java用于操作流的对象都在IO包中 IO流分类 按照数据流向 输入流 读入数据 输出流 写出数据 按照数据类型 字节流 可以读写任何类型的文件 比如音频 视频 文本文件 字符流 只能读写文本文件 什么情况下使用哪种流呢? 如果数据所在的文件通过windows自带的记事本打开并能读懂里面的内容,就用字符流。其他用字节流
IO流基类概述 a:字节流的抽象基类: InputStream ,OutputStream。 b:字符流的抽象基类: Reader , Writer
Io流的分类: - (1): 按照流向进行划分 输入流 输出流
(2): 按照操作的数据类型进行划分字节流字节输入流 InputStream 读字节输出流 OutputStream 写字符流字符输入流 Reader 读字符输出流 Writer 写FileOutputStream写出数据 构造方法 FileOutputStream(File file) FileOutputStream(String name)
注意事项: 创建字节输出流对象了做了几件事情? a:调用系统资源创建a.txt文件 b:创建了一个fos对象 c:把fos对象指向这个文件 为什么一定要close()? a: 通知系统释放关于管理a.txt文件的资源 b: 让Io流对象变成垃圾,等待垃圾回收器对其回收
public void write(int b):写一个字节 超过一个字节 砍掉前面的字节 public void write(byte[] b):写一个字节数组 public void write(byte[] b,int off,int len):写一个字节数组的一部分
public class Test5 { public static void main(String[] args) throws IOException { FileOutputStream out = new FileOutputStream ("s.txt"); out.write ("王五".getBytes ()); out.close (); } }因为write方法写入的是一个字节,或者字节数组,所以在写字符串的时候应该转为字符数组 FileOutputStream写出数据实现换行和追加写入 windows下的换行符只用是 \r\n Linux \n Mac \r
方法 int read():一次读取一个字节 如果没有数据返回的就是-1 int read(byte[] b):一次读取一个字节数组 返回的int类型的值表示的意思是读取到的字节的个数,如果没有数据了就返回-1 字节流复制MP3 一次读写一个字节
public static void main(String[] args) throws IOException { FileOutputStream out = new FileOutputStream ("D:\\辛晓琪 - 领悟2.mp3"); FileInputStream in = new FileInputStream ("D:\\辛晓琪 - 领悟.mp3"); int len=0; while ((len=in.read ())!=-1){ out.write (len); } in.close (); out.close (); }一次读写一个字节数组
public static void main(String[] args) throws IOException { FileOutputStream out = new FileOutputStream ("D:\\辛晓琪 - 领悟3.mp3"); FileInputStream in = new FileInputStream ("D:\\辛晓琪 - 领悟.mp3"); byte[] bytes = new byte[1024 * 8]; int len=0; while ((len=in.read (bytes))!=-1){ out.write (bytes,0,len); } in.close (); out.close (); }缓冲思想 字节流一次读写一个数组的速度明显比一次读写一个字节的速度快很多, 这是加入了数组这样的缓冲区效果,java本身在设计的时候, 也考虑到了这样的设计思想(装饰设计模式后面讲解),所以提供了字节缓冲区流
BufferedOutputStream的构造方法 BufferedOutputStream(OutputStream out)
BufferedInputStream的构造方法 BufferedInputStream(InputStream in)
使用高效字节流复制文件
public static void main(String[] args) throws IOException { BufferedOutputStream out = new BufferedOutputStream (new FileOutputStream ("D:\\辛晓琪 - 领悟5.mp3")); BufferedInputStream in = new BufferedInputStream (new FileInputStream ("D:\\辛晓琪 - 领悟.mp3")); byte[] bytes = new byte[1024 * 8]; int len=0; while ((len=in.read (bytes))!=-1){ out.write (bytes,0,len); out.flush (); } in.close (); out.close (); }在使用高效字节流复制文件是,明显能感觉到速度快了许多,这是因为缓冲区的出现,使得效率大大提高