复习java基础,其中IO/NIO很重要。
IO 总结:
1.根据维度不同IO可以分为 字节流和字符流、输入流和输出流
2.特点是只能单向输出,输入
3.执行流程大体一致 File —— FileInputStream / FileOutputStream / FileReader / FileWriter -—— 调用read/write方法 —— 关闭流,防止资源消耗。
NIO 总结:
1.主要通过 Channel 、 Buffer 、 Sellector 进行数据块操作。
2.特点是通过Channel可以进行双向读写,及异步读写,读写必须通过Buffer进行。
3.流程: File —— FileInputStream / FileOutputStream —— getChannel() —— ByteBuffer 创建 —— 调用read/write方法 ——读完时调用flip();写完调用clear()——关闭通道
关闭流。