JavaのIO流

IO

1. File类
  • File 类代表与平台无关的文件和目录。
  • File 能新建、删除、重命名文件和目录,但 File 不能访问文件内容本身。如果需要访问文件内容本身,则需要使用输入/输出流。
  1. File的常用方法
  2. 遍历给定目录所有文件
package am;
 
import java.io.File;
 
 
public class Test1 {
    public static void main(String[] args) {
        File file=new File("E:\\ftproot\\资料");
        show(file,"");
    }
    public static  void show(File file,String s){
        if(file.isDirectory()){
            File[] files = file.listFiles();
            for(File f:files){
                if(f.isDirectory()){
                    System.out.println(s+f.getName());
                    show(f,s+"    ");
                }else{
                    System.out.println(s+f.getName());
                }
            }
        }else{
            System.out.println(file.getName());
        }
    }
}
  1. 给定目录,删除该目录下的空文件夹
public static void main(String[] args) {
        File file = new File("/Users/yeyunsen/Documents/大学/大四上/day13/src/com");
        File[] files = file.listFiles();
        for (File f :
                files) {
            if(f.delete()){
                System.out.println("删除空目录:" + f.getPath() +"成功");
            }
        }
    }
案例12-1:模拟文件管理器
package demo2;
 
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
 
public class Test {
    //定义一个装符合关键字搜索的文件目录
    private static List<String> listByKey = new ArrayList<>();
    //定义一个装符合后缀名搜索的文件目录
    private static List<String> listByShuffix = new ArrayList<>();
 
    public static void main(String[] args) {
        //模拟资源管理器
        //能够按照关键字搜索,能够按照后缀名搜索,能够复制
        System.out.println("======文件资源管理=========");
        System.out.println("1.按照关键字搜索");
        System.out.println("2.按照后缀名搜索");
        System.out.println("3.复制");
        System.out.println("4.退出");
        Scanner sca = new Scanner(System.in);
        System.out.println("请输入操作:");
        int i = sca.nextInt();
        switch (i) {
            case 1:
                findBuyKey();
                break;
            case 2:
                findBuySuffix();
                break;
            case 3:
                copy();
                break;
            case 4:
                loginout();
 
        }
    }
 
    public static void findBuyKey() {
        //按照关键字搜索:
        // 1.目标目录  2.关键字key
        Scanner sca = new Scanner(System.in);
        System.out.println("请输入要查找的目录:");
        String srcdir = sca.nextLine();
        System.out.println("请输入要查找的文件:");
        String key = sca.nextLine();
        File file = new File(srcdir);
        listfile(file, key);
        System.out.println(listByKey);
    }
 
    public static void findBuySuffix() {
        //按照后缀名搜索:
        // 1.目标目录  2.后缀名suffix
        Scanner sca = new Scanner(System.in);
        System.out.println("请输入要查找的目录:");
        String srcdir = sca.nextLine();
        System.out.println("请输入要查找的后缀名:");
        String suffix = sca.nextLine();
        File file = new File(srcdir);
        listfile2(file,suffix);
        System.out.println(listByShuffix);
    }
 
    public static void copy() {
        //复制
        //1.源文件   2.目标文件
        Scanner sca = new Scanner(System.in);
        System.out.println("请输入要复制的文件目录:");
        String srcfile = sca.nextLine();
        System.out.println("请输入要复制的目标目录:");
        String tofile = sca.nextLine();
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
            bis = new BufferedInputStream(new FileInputStream(new File(srcfile)));
            bos = new BufferedOutputStream(new FileOutputStream(new File(tofile)));
            byte[] tong = new byte[1024];
            int len = 0;
            while ((len = bis.read(tong)) > 0) {
                bos.write(tong, 0, len);
            }
            bos.flush();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (bos != null) {
                try {
                    bos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (bis != null) {
                try {
                    bis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
 
    public static void loginout() {
        System.exit(0);
    }
 
    public static void listfile2(File file, String suffix) {
        File[] files = file.listFiles();
        for (File f : files) {
            if (f.isDirectory()) {
                listfile2(f, suffix);
            } else {
                if (f.getName().endsWith(suffix)) {
                    listByShuffix.add(f.getPath());
                }
            }
        }
    }
 
    public static void listfile(File file, String key) {
        File[] files = file.listFiles();
        for (File f : files) {
            if (f.isDirectory()) {
                if (f.getName().contains(key)) {
                    listByKey.add(f.getPath());
                }
                listfile(f, key);
            } else {
                if (f.getName().contains(key)) {
                    listByKey.add(f.getPath());
                }
            }
        }
    }
}
2. IO流概述及其分类

1).IO流概述

流是一组有顺序的,有起点和终点的字节集合,是对数据传输的总称或抽象。它的特性是进行数据传输.例如从水源地长江把水导入自来水厂,然后又从自来水厂把水送到各家各户。从长江到自来水厂之间的管道我们可以称之为输入流,从自来水厂把水送到各家各户的管道我们称之为输出流,我们大概可以这么理解。

IO即为input和output,即输入输出.

2).IO流分类

流按照流向数据流向可以分为输入流和输出流。

流按照处理数据类型的单位不同可以分为字节流和字符流。

3).IO流继承图

3.字节流

1).字节流的概念

InputStream为字节输入流,本身是个抽象类,表示字节输入流的所有类的超类,必须依靠其子类实现各种功能,数据单位位字节。常用方法有:

    (1) public abstract int read( ):读取一个byte的数据,返回值是高位补0的int类型值。若返回值=-1说明没有读取到任何字节读取工作结束。

   (2) public int read(byte b[ ]):读取b.length个字节的数据放到b数组中。返回值是读取的字节数。该方法实际上是调用下一个方法实现的
   (3) public int read(byte b[ ], int off, int len):从输入流中最多读取len个字节的数据,存放到偏移量为off的b数组中。
   (4) public int available( ):返回输入流中可以读取的字节数。注意:若输入阻塞,当前线程将被挂起,如果InputStream对象调用这个方法的话,它只会返回0,这个方法必须由继承InputStream类的子类对象调用才有用,
   (5) public long skip(long n):忽略输入流中的n个字节,返回值是实际忽略的字节数, 跳过一些字节来读取
   (6) public int close( ) :我们在使用完后,必须对我们打开的流进行关闭.

OutputStream为字节输出流,常用方法有:

  (1) public void write(byte b[ ]):将参数b中的字节写到输出流。
  (2) public void write(byte b[ ], int off, int len) :将参数b的从偏移量off开始的len个字节写到输出流。
  (3) public abstract void write(int b) :先将int转换为byte类型,把低字节写入到输出流中。
  (4) public void flush( ) : 将数据缓冲区中数据全部输出,并清空缓冲区。
  (5) public void close( ) : 关闭输出流并释放与流相关的系统资源。

2).字节流读取文件

public class FISRead {
    public static void main(String[] args) throws IOException{
       // 使用文件名称创建流对象  
       FileInputStream fis = new FileInputStream("read.txt");
       // 读取数据,返回一个字节  
        int read = fis.read();
        System.out.println((char) read);
        read = fis.read();
        System.out.println((char) read);
        read = fis.read();
        System.out.println((char) read);
        read = fis.read();
        System.out.println((char) read);
        read = fis.read();
        System.out.println((char) read);
       // 读取到末尾,返回‐1  
       read = fis.read();
        System.out.println( read);
            // 关闭资源        
        fis.close();
    }
}
 
 
//循环改进读取方式
public class FISRead {
    public static void main(String[] args) throws IOException{
          // 使用文件名称创建流对象  
       FileInputStream fis = new FileInputStream("read.txt");
          // 定义变量,保存数据  
        int b ;
        // 循环读取
        while ((b = fis.read())!=1) {
            System.out.println((char)b);
        }
            // 关闭资源        
        fis.close();
    }
}
 
 
//使用字节数组读取
public class FISRead {
    public static void main(String[] args) throws IOException{
       // 使用文件名称创建流对象.  
       FileInputStream fis = new FileInputStream("read.txt"); // 文件中为abcde
       // 定义变量,作为有效个数  
        int len ;
        // 定义字节数组,作为装字节数据的容器  
        byte[] b = new byte[2];
        // 循环读取
        while (( len= fis.read(b))!=1) {
           // 每次读取后,把数组变成字符串打印
            System.out.println(new String(b));
        }
            // 关闭资源        
        fis.close();
    }
}
 
//使用字节数组读取-优化
public class FISRead {
    public static void main(String[] args) throws IOException{
         // 使用文件名称创建流对象.  
           FileInputStream fis = new FileInputStream("read.txt"); // 文件中为abcde
         // 定义变量,作为有效个数  
        int len ;
        // 定义字节数组,作为装字节数据的容器  
        byte[] b = new byte[2];
        // 循环读取
        while (( len= fis.read(b))!=1) {
           // 每次读取后,把数组的有效字节部分,变成字符串打印
            System.out.println(new String(b,0,len));//  len 每次读取的有效字节个数
        }
                // 关闭资源        
        fis.close();
    }
}

3).文件的拷贝

public class Copy {
    public static void main(String[] args) throws IOException {
        // 1.创建流对象
        // 1.1 指定数据源
        FileInputStream fis = new FileInputStream("D:\\test.jpg");
        // 1.2 指定目的地
        FileOutputStream fos = new FileOutputStream("test_copy.jpg");
        // 2.读写数据
        // 2.1 定义数组
        byte[] b = new byte[1024];
        // 2.2 定义长度
        int len;
        // 2.3 循环读取
        while ((len = fis.read(b))!=1) {
            // 2.4 写出数据
            fos.write(b, 0 , len);
        }
        // 3.关闭资源
        fos.close();
        fis.close();
    }
}
4.字符流

当使用字节流读取文本文件时,可能会有一个小问题。就是遇到中文字符时,可能不会显示完整的字符,那是因为一个中文字符可能占用多个字节存储。所以Java提供一些字符流类,以字符为单位读写数据,专门用于处理文本文件。

1).字符流定义及基本用法

Reader为字符输入流,常用方法有:

    (1) public int read() throws IOException: 读取一个字符,返回值为读取的字符

   (2) public int read(char cbuf[]) throws IOException:读取一系列字符到数组cbuf[]中,返回值为实际读取的字符的数量
   (3) public abstract int read(char cbuf[],int off,int len) throws IOException:读取len个字符,从数组cbuf[]的下标off处开始存放,返回值为实际读取的字符数量,该方法必须由子类实现。

Writer为字符输出流,常用法有:

    (1) public void write(int c) throws IOException:将整型值c的低16位写入输出流

   (2) public void write(char cbuf[]) throws IOException:将字符数组cbuf[]写入输出流
   (3) public abstract void write(char cbuf[],int off,int len) throws IOException:将字符数组cbuf[]中的从索引为off的位置处开始的len个字符写入输出流
   (4) public void write(String str) throws IOException:将字符串str中的字符写入输出流
   (5) public void write(String str,int off,int len) throws IOException:将字符串str 中从索引off开始处的len个字符写入输出流
   (6) flush( ) :刷空输出流,并输出所有被缓存的字节。
   (7) close() :关闭流

2).字符流操作文件

//单个字符读取
public class FRRead {
    public static void main(String[] args) throws IOException {
       // 使用文件名称创建流对象  
       FileReader fr = new FileReader("read.txt");
       // 定义变量,保存数据  
        int b ;
        // 循环读取
        while ((b = fr.read())!=1) {
            System.out.println((char)b);
        }
                // 关闭资源        
        fr.close();
    }
}
 
//使用字符数组读取
public class FRRead {
    public static void main(String[] args) throws IOException {
       // 使用文件名称创建流对象  
       FileReader fr = new FileReader("read.txt");
       // 定义变量,保存有效字符个数  
        int len ;
        // 定义字符数组,作为装字符数据的容器
         char[] cbuf = new char[2];
        // 循环读取
        while ((len = fr.read(cbuf))!=1) {
            System.out.println(new String(cbuf));
        }
                // 关闭资源        
        fr.close();
    }
}
 
//使用字符数组读取--优化
public class FISRead {
    public static void main(String[] args) throws IOException {
           // 使用文件名称创建流对象  
           FileReader fr = new FileReader("read.txt");
           // 定义变量,保存有效字符个数  
        int len ;
               // 定义字符数组,作为装字符数据的容器
        char[] cbuf = new char[2];
        // 循环读取
        while ((len = fr.read(cbuf))!=1) {
            System.out.println(new String(cbuf,0,len));
        }
             // 关闭资源    
        fr.close();
    }
}
 
 
//字符流写数据--单个字符
public class FWWrite {
    public static void main(String[] args) throws IOException {
        // 使用文件名称创建流对象
        FileWriter fw = new FileWriter("fw.txt");    
       // 写出数据  
       fw.write(97); // 写出第1个字符  
       fw.write('b'); // 写出第2个字符  
       fw.write('C'); // 写出第3个字符  
       fw.write(30000); // 写出第4个字符,中文编码表中30000对应一个汉字。  
       fw.flush();
       /*  
        【注意】关闭资源时,与FileOutputStream不同。
        如果不关闭,数据只是保存到缓冲区,并未保存到文件。  
        */
       fw.close();
    }
}
 
//字符流写数据--字符数组
public class FWWrite {
    public static void main(String[] args) throws IOException {
        // 使用文件名称创建流对象
        FileWriter fw = new FileWriter("fw.txt");    
       // 字符串转换为字节数组  
       char[] chars = "上程数据".toCharArray();  
      
       // 写出字符数组  
       fw.write(chars);   
              
       fw.write(b,2,2);
      
       // 关闭资源  
        fos.close();
    }
}
 
//字符流写数据--字符数组
public class FWWrite {
    public static void main(String[] args) throws IOException {
      // 使用文件名称创建流对象
      FileWriter fw = new FileWriter("fw.txt");    
      // 字符串  
      String msg = "上程数据";
           fw.write(msg);         
      fw.write(msg,2,2);
      // 关闭资源
      fos.close();
    }
}
5. 缓冲流

缓冲流,也叫高效流,是对4个基本的 FileXxx 流的增强,所以也是4个流,按照数据类型分类:

字节缓冲流: BufferedInputStream , BufferedOutputStream
字符缓冲流: BufferedReader , BufferedWriter
缓冲流的基本原理,是在创建流对象时,会创建一个内置的默认大小的缓冲区数组,通过缓冲区读写,减少系统IO次数,从而提高读写的效率。

5.1 字节缓冲流

构造方法

  • public BufferedInputStream(InputStream in) :创建一个 新的缓冲输入流。
  • public BufferedOutputStream(OutputStream out) : 创建一个新的缓冲输出流。
// 创建字节缓冲输入流
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("bis.txt"));
// 创建字节缓冲输出流
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("bos.txt"));
 
 
 
 
public class BufferedDemo {
    public static void main(String[] args) throws FileNotFoundException {
       //记录开始时间
       long start = System.currentTimeMillis();  
            //创建流对象        
        try{
         BufferedInputStream bis = new BufferedInputStream(new FileInputStream("jdk8.exe"));    
           BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("copy.exe"));    
                 //读写数据
            int b;
            while ((b = bis.read()) !=1) {
                           bos.write(b);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
                //记录结束时间        
        long end = System.currentTimeMillis();
        System.out.println("缓冲流复制时间:"+(end ‐ start)+" 毫秒");
    }
}
5.2 字符缓冲流

构造方法

  • public BufferedReader(Reader in) :创建一个 新的缓冲输入流。

  • public BufferedWriter(Writer out) : 创建一个新的缓冲输出流。
    特有方法

  • BufferedReader: public String readLine() : 读一行文字。

  • BufferedWriter: public void newLine() : 写一行行分隔符,由系统属性定义符号。

// 创建字符缓冲输入流
BufferedReader br = new BufferedReader(new FileReader("br.txt"));
// 创建字符缓冲输出流
BufferedWriter bw = new BufferedWriter(new FileWriter("bw.txt"));
 
 
 
//readLine 方法演示
public class BufferedReaderDemo {
    public static void main(String[] args) throws IOException {
        // 创建流对象  
        BufferedReader br = new BufferedReader(new FileReader("in.txt"));
                // 定义字符串,保存读取的一行文字        
        String line  = null;
       // 循环读取,读取到最后返回null  
        while ((line = br.readLine())!=null) {
            System.out.print(line);
            System.out.println("‐‐‐‐‐‐");
        }
            // 释放资源        
        br.close();
    }
}
 
//newLine 方法演示
public class BufferedWriterDemo throws IOException {
    public static void main(String[] args) throws IOException  {
       // 创建流对象  
            BufferedWriter bw = new BufferedWriter(new FileWriter("out.txt"));        
       // 写出数据  
        bw.write("上程");
       // 写出换行  
        bw.newLine();
        bw.write("数据");
        bw.newLine();
            // 释放资源        
        bw.close();
    }
}
案例8-3:恢复文本排序

请将文本信息恢复顺序

3.侍中、侍郎郭攸之、费祎、董允等,此皆良实,志虑忠纯,是以先帝简拔以遗陛下。愚以为宫中之事,事无大小,悉以咨之,然后施行,必得裨补阙漏,有所广益。
8.愿陛下托臣以讨贼兴复之效,不效,则治臣之罪,以告先帝之灵。若无兴德之言,则责攸之、祎、允等之慢,以彰其咎;陛下亦宜自谋,以咨诹善道,察纳雅言,深追先帝遗诏,臣不胜受恩感激。
4.将军向宠,性行淑均,晓畅军事,试用之于昔日,先帝称之曰能,是以众议举宠为督。愚以为营中之事,悉以咨之,必能使行阵和睦,优劣得所。
2.宫中府中,俱为一体,陟罚臧否,不宜异同。若有作奸犯科及为忠善者,宜付有司论其刑赏,以昭陛下平明之理,不宜偏私,使内外异法也。
1.先帝创业未半而中道崩殂,今天下三分,益州疲弊,此诚危急存亡之秋也。然侍卫之臣不懈于内,忠志之士忘身于外者,盖追先帝之殊遇,欲报之于陛下也。诚宜开张圣听,以光先帝遗德,恢弘志士之气,不宜妄自菲薄,引喻失义,以塞忠谏之路也。
9.今当远离,临表涕零,不知所言。
6.臣本布衣,躬耕于南阳,苟全性命于乱世,不求闻达于诸侯。先帝不以臣卑鄙,猥自枉屈,三顾臣于草庐之中,咨臣以当世之事,由是感激,遂许先帝以驱驰。后值倾覆,受任于败军之际,奉命于危难之间,尔来二十有一年矣。
7.先帝知臣谨慎,故临崩寄臣以大事也。受命以来,夙夜忧叹,恐付托不效,以伤先帝之明,故五月渡泸,深入不毛。今南方已定,兵甲已足,当奖率三军,北定中原,庶竭驽钝,攘除奸凶,兴复汉室,还于旧都。此臣所以报先帝而忠陛下之职分也。至于斟酌损益,进尽忠言,则攸之、祎、允之任也。
5.亲贤臣,远小人,此先汉所以兴隆也;亲小人,远贤臣,此后汉所以倾颓也。先帝在时,每与臣论此事,未尝不叹息痛恨于桓、灵也。侍中、尚书、长史、参军,此悉贞良死节之臣,愿陛下亲之信之,则汉室之隆,可计日而待也。
public class Recovery {
    public static void main(String[] args) throws IOException {
        Map<String,String> map = new HashMap<>();
        ///Users/yeyunsen/Documents/大学/大四上/day13/chushibiao.txt
        ///Users/yeyunsen/Documents/大学/大四上/day13/out.txt
        BufferedReader br = new BufferedReader(new FileReader(new File("C:\\Users\\Administrator\\Desktop\\day13\\day13\\chushibiao.txt")));
        BufferedWriter bw = new BufferedWriter(new FileWriter(new File("C:\\Users\\Administrator\\Desktop\\day13\\day13\\out.txt")));
        String s;
        while ((s=br.readLine())!=null){
            String[] split = s.split("\\.");
            map.put(split[0],split[1]);
        }
        br.close();
        for (int i = 0; i < map.size(); i++) {
            String key = String.valueOf(i);//String.valueOf(int i) : 将 int 变量 i 转换成字符串
            String value = map.get(key);
            if(value!=null){
                bw.write(key+"."+value);
                bw.newLine();
                bw.flush();
            }
        }
        bw.close();
    }
}