This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
IO在计算机中表示输入和输出,java对IO进行抽象后构建了流,分为输入、输出流。根据数据处理方式又分为字节流和字符流。
字节流的顶级接口为InputStream、OutputStream
字符流的顶级接口为Reader、Writer