IO流基础知识详解--文件及IO流原理

打印 上一主题 下一主题

主题 623|帖子 623|积分 1869

目录
一、文件
1、基本解释
2、常用的文件操作
3、获取文件相关信息
4、目录操作和文件删除
二、IO流原理及分类
 1、IO流原理
2、流的分类
3、IO流体系图

一、文件

   1、基本解释

  (1)什么是文件?
          文件是保存数据的地方,比如大家经常使用的word文档、txt文件、excel文件等都是文件。它还可以保存一张图片,也可以保存视频声音
  (2)文件流
  

          流 :数据在数据源(文件)和程序(内存)之间经历的路径
        输入流 :  数据从数据源(文件)到程序(内存)的路径
        输出流 :数据从程序(内存)到数据源(文件)的路径 

  2、常用的文件操作

  (1)相关方法
  

  • new File(String pathname)    -->  根据路径构建一个File对象
  • new File(File parent,String child)  --> 根据父目录文件+子路径构建
  • new File(String parent,String child) --> 根据父目录+子路径构建
  • createNewFile 创建新文件
(2)代码示例
  (①)方式一:new File(String pathname) 
  1.     //方式1 new File(String pathname)
  2.     public void create01(){
  3.         //定好路径
  4.         String filePath = "D:\\news1.txt";
  5.         //创建路径对象
  6.         File file = new File(filePath);
  7.         try {
  8.             //根据路径创建文件
  9.             file.createNewFile();
  10.             System.out.println("创建文件成功");
  11.         } catch (IOException e) {
  12.             e.printStackTrace();
  13.         }
  14.     }
复制代码
(②)方式二:new File(File parent,String child)
  1. //第二种方式 new File(File parent,String child) ,根据父目录文件 + 子路径构建
  2.     //D:\\news2.txt
  3.     public void create02(){
  4.         File parentFile = new File("D:\");
  5.         String fileName = "news2.txt";
  6.         //创建路径对象
  7.         File file = new File(parentFile, fileName);
  8.         try {
  9.             
  10.             //根据路径创建文件
  11.             file.createNewFile();
  12.             System.out.println("创建成功~");
  13.         } catch (IOException e) {
  14.             e.printStackTrace();
  15.         }
  16.     }
复制代码
(③)方式三:new File(String parent,String child)
  1. //第三种方式 new File(String parent,String child) ,根据父目录文件 + 子路径构建
  2.     //D:\\news3.txt
  3.     public void create03(){
  4.         String parentFile = "D:\";
  5.         String fileName = "news3.txt";
  6.         File file = new File(parentFile, fileName);
  7.         try {
  8.             file.createNewFile();
  9.             System.out.println("创建成功~");
  10.         } catch (IOException e) {
  11.             e.printStackTrace();
  12.         }
  13.     }
复制代码
3、获取文件相关信息

  (1)常用方法:代码示例
  1.     //获取文件的信息
  2.     public void info(){
  3.         //先创建文件对象
  4.         File file = new File("D:\\news1.txt");
  5.         //调用相应的方法,得到对应的信息
  6.         System.out.println("文件名字=" + file.getName());
  7.         System.out.println("文件绝对路径=" + file.getAbsolutePath());
  8.         System.out.println("文件父级目录=" + file.getParent());
  9.         System.out.println("文件大小(字节)=" + file.length());
  10.         System.out.println("是否有文件存在=" + file.exists());
  11.         System.out.println("是不是有一个文件=" + file.isFile());
  12.         System.out.println("是不是有一个目录=" + file.isDirectory());
  13.     }
复制代码
4、目录操作和文件删除

  

  • mkdir 创建一级目录
  • mkdirs 创建多级目录
  • delete 删除空目录或文件
==》代码示例1:
  1.     //判断 d:\\news1.txt 是否存在,如果存在就删除
  2.     public void m1(){
  3.         //文件路径
  4.         String filePath = "d:\\news1.txt";
  5.         //创建文件路径对象
  6.         File file = new File(filePath);
  7.         //首先判断文件是否存在
  8.         if (file.exists()){
  9.             //如果存在,就删除
  10.             if (file.delete()){
  11.                 System.out.println(filePath + "删除成功");
  12.             }else {
  13.                 System.out.println("删除失败");
  14.             }
  15.         }else {
  16.             System.out.println("该文件不存在.....");
  17.         }
  18.     }
复制代码
==》代码示例2:
  1.     //判断 d:\\demo02 是否存在,如果存在就删除
  2.     //这里我们需要体会到,在Java编程中,目录也被当做文件
  3.     public void m2(){
  4.         //文件路径
  5.         String filePath = "d:\\demo02";
  6.         //创建文件路径对象
  7.         File file = new File(filePath);
  8.         //首先判断文件是否存在
  9.         if (file.exists()){
  10.             //如果存在,就删除
  11.             if (file.delete()){
  12.                 System.out.println(filePath + "删除成功");
  13.             }else {
  14.                 System.out.println("删除失败");
  15.             }
  16.         }else {
  17.             System.out.println("该目录不存在.....");
  18.         }
  19.     }
复制代码
==》代码示例3:
  1.     //判断:D:\\demo\\a\\b\\c 目录是否存在,如果存在就提示已经存在,否则就创建
  2.     public void m3(){
  3.         //文件路径
  4.         String directoryPath = "D:\\demo\\a\\b\\c";
  5.         //路径对象
  6.         File file = new File(directoryPath);
  7.         //首先判断文件是否存在
  8.         if (file.exists()){
  9.             System.out.println(directoryPath + "存在");
  10.         }else {
  11.             if (file.mkdirs()){
  12.                 System.out.println(directoryPath + "创建成功");
  13.             }else {
  14.                 System.out.println("创建失败");
  15.             }
  16.         }
  17.     }
复制代码

二、IO流原理及分类

    1、IO流原理

  

  • I / OInput / Output 的缩写,I/O技术是非常实用的技术,用于处理数据传输,如读文件、写文件,网结通讯等
  • Java程序中,对于数据的输入/输出操作以”流(stream)" 的方式进行。
  • java.io 包下提供了各种“流”的类和接口,用以获取不同种类的数据,并通过方法输入或输出数据
  • 输入(input) : 读取外部数据(磁盘、光盘等存储设备的数据)到程序(内存)中。
  • 输出(output): 将程序(内存)数据输出到磁盘、 光盘等存储设备中
  • 原理示意图:

  2、流的分类

  

  • 按操作数据单位不同分为 : 字节流(8 bit)二进制文件,字符流(按字符)文本文件
  • 按数据流的流向不同分为 : 输入流,输出流
  • 按流的角色的不同分为 : 节点流,处理流/包装流

   注意:
          1、Java的I0流共涉及40多个类 实际上非常规则 都是从如上4个抽象基类派生的
        2、由这四个类派生出来的子类名称都是以其父类名作为子类名后缀
  
  3、IO流体系图

  

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

立聪堂德州十三局店

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表