javaIO流---Java基础宋红康学习笔记

一、File类的使用

1、File类的使用

  • Java.io.File类:文件和文件目录路径的抽象表示形式,与平台无关
  • File能新建、删除、重命名文件和目录,但File不能访问文件内容本身。如果需要访问文件内容本身下,则需要使用输入/输出流。
  • 想要在java程序中表示一个真实存在的文件或目录,那麽必须有一个File对象,但是Java程序中的一个File对象,可能没有一个真实存在的文件或目录。
  • File对象可以作文参数传递给流的构造器

2、File类的使用:常用构造器

  • public File(String pathname)

    • 以pathname为路径创建File对象,可以是绝对路径或者相对路径,如果pathname是相对路径,则默认的当前路径在系统属性user.dir中存储。
      • 绝对路径:是一个固定的路径,从盘符开始
      • 相对路径:是相对于某个位置开始
  • public File(String parent,String child)

    • 以parent为父路径,child为子路径创建File对象。
  • public File(File parent,String child)

    • 根据一个父File对象和子文件路径创建File对象
/*
* File类的使用
*
* 1、File类的一个对象,代表一个文件或一个文件目录
* 2、File类声明在java.io包下
* */
public class FileTest {
    /*
    * 1、如何创建File类的实例
    *   File(String filePath)
    *   File(String parentPath,String childPath)
    *   File(File parentFile,String childPath)
    * 2、
    *   相对路径:相较于某个路径下,指明的路径
    *   绝对路径:包含盘符在内的文件或文件目录的路径
    *
    * 3、路径分隔符
    *   Windows:\\
    *   Linux: /
    *
    * */
    @Test
    public void test1(){
//        构造器一、
        File file1 = new File("hello.txt");//相对于当前model
        File file2 = new File("F:\\大三上\\java宋红康笔记\\我的笔记\\he.txt");
        System.out.println(file1);
        System.out.println(file2);

//        构造器二、
        File file3 = new File("F:\\大三上\\java宋红康笔记","我的笔记");
        System.out.println(file3);

//        构造器三、
        File file4 = new File(file3,"hi.txt");
        System.out.println(file4);
    }
}

3、File类的使用:路径分隔符

  • 路径中的每级目录之间用一个路径隔开
  • 路径分隔符和系统有关:
    • Windows和DOS系统默认使用 \ 来表示
    • UNIX和URL使用 / 来表示
  • Java程序支持跨平台运行,因此路径分隔符要慎用
  • 为了解决这个隐患,File类提供了一个常量:
    • public static final separator。根据操作系统,动态的提供分隔符

4、File类的使用:常用方法

  • File类的获取功能

    • public String getAbsolutePath():获取绝对路径
    • public String getPath() :获取路径
    • public String getName() :获取名称
    • public String getParent():获取上层文件目录路径。若无,返回null
    • public long length() :获取文件长度(即:字节数)。不能获取目录的长度。
    • public long lastModified() :获取最后一次的修改时间,毫秒值
    • public String[] list() :获取指定目录下的所有文件或者文件目录的名称数组
    • public File[] listFiles() :获取指定目录下的所有文件或者文件目录的File数组
  • File类的重命名功能

    • public boolean renameTo(File dest):把文件重命名为指定的文件路径
  • File类的判断功能

    • public boolean isDirectory():判断是否是文件目录

    • public boolean isFile() :判断是否是文件

    • public boolean exists() :判断是否存在

    • public boolean canRead() :判断是否可读

    • public boolean canWrite() :判断是否可写

    • public boolean isHidden() :判断是否隐藏

  • File类的创建功能

    • public boolean createNewFile() :创建文件。若文件存在,则不创建,返回false
    • public boolean mkdir() :创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
    • public boolean mkdirs() :创建文件目录。如果上层文件目录不存在,一并创建

注意事项:如果你创建文件或者文件目录没有写盘符路径,那么,默认在项目路径下。

  • File类的删除功能

    • public boolean delete():删除文件或者文件夹

    • 删除注意事项:

      Java中的删除不走回收站

      要删除一个文件目录,请注意该文件目录内不能包含文件或者文件目录

二、流

/*
* 一、流的分类:
* 1、操作数据单位:字节流、字符流
* 2、数据的流向:输入流、输出流
* 3、流的角色:节点流、处理流
*
* 二、流的体系结构
* 抽象基类              节点流(文件流)           缓冲流(处理流的一种)
* InputStream           FileInputStream         BufferedInputStream
* OutputStream          FileOutputStream        BufferedOutputStream
* Reader                FileReader              BufferedReader
* Writer                FileWriter              BufferedWriter
*
*
* */

1、FileReader

1.1、优化前

/
    public static void main(String[] args) {
        File file1 = new File("hello.txt");//在main方法中 该文件是相对于当前工程下的
        System.out.println(file1.getAbsolutePath());
    }

    /*
    * 将hello.txt文件内容读入程序中,并输出到控制台
    *
    * 说明点:
    * 1、read()的理解:返回读入的一个字符串。如果达到文件末尾,返回-1
    * 2、异常的处理:为了保证资源一定可以执行关闭操作。需要使用try-catch-finally处理
    * 3、读入的文件一定要存在,否则就会报异常
    * */
    @Test
    public void test1(){
        FileReader fr = null;
        try {
//      1、实例化File类的对象,指明要操作的文件
            File file1 = new File("hello.txt");//在test测试中 该文件是相对于当前modle下的
            System.out.println(file1.getAbsolutePath());
//      2、提供具体的流
            fr = new FileReader(file1);

//      3、数据的读入
            //read():返回读入的一个字符。如果达到文件末尾,返回-1
            //方式一、
/*        int read = fr.read();
        while(read != -1){
            System.out.print((char)read);
            read = fr.read();
        }*/

//        方式二、语法上针对方式一的修改
            int data;
            while((data = fr.read() )!= -1)
                System.out.print((char)data);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {

//      4、流的关闭操作
            try {
                if(fr != null)
                    fr.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

1.2、优化后

    //对read()方法的操作升级:使用read的重载方法
    @Test
    public void test2()  {
        FileReader fr = null;
        try {
            //1、File类的实例化
            File file = new File("hello.txt");

            //2、流的实例化
            fr = new FileReader(file);

            //3、读入操作
            //read(char[] cbuf):返回每次读入cbuf数组中字符的个数。如果达到文件末尾,返回-1
            char[] cbuf = new char[5];
            int len;
            while((len =fr.read(cbuf)) != -1){
                
              //方式一
                //错误的写法,如果最后的数据小于数组的长度,则只会将最后的数据覆盖到数组的前几个,数组的后几个数据保持不变并输出
               /* for(int i = 0;i<cbuf.length;i++){
                    System.out.print(cbuf[i]);
                }*/

               //正确写法
                for(int i = 0;i<len;i++){
                    System.out.print(cbuf[i]);
                }

              //方式二、
                //错误的写法,错误原因与方式一一样
/*                String str = new String(cbuf);//将字符数组转换为字符串
                System.out.println(str);*/

                //正确写法
                String str = new String(cbuf,0,len);
                System.out.println(str);
                
            }
            
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //4、资源的关闭
            try {
                if(fr != null)
                    fr.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

2、FileWriter

    /*
    * 从内存中写出数据到硬盘文件里
    *
    * 说明:
    * 1、输出操作,对应的File可以不存在的。并不会报异常
    * 2、
    *   File对应的硬盘中的文件如果不存在,在输出的过程中,会自动创建此文件
    *   File对应的硬盘中的文件如果存在:
    *       如果流使用的构造器是:FileWriter(file,false)/FileWriter(file):对原有文件的覆盖
    *       如果流使用的构造器是:FileWriter(file,true):不会对原有文件覆盖,而是在原有文件的基础上追加内容
    *
    * */
    @Test
    public void test3()  {
        FileWriter fw = null;
        try {
            //1、提供File类的对象,指明写出到文件
            File file = new File("hello1.txt");

            //2、FileWriter的对象,用于数据的写出
            //ture:在文件现有内容的后面添加
            //false:覆盖文件
            fw = new FileWriter(file,false);

            //3、写入操作
            fw.write("I hava a dream\n");
            fw.write("You hava a dream too");
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //4、流资源的关闭
            if(fw != null){
                try {
                    fw.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
       
    }

3、FileOutputStream/FileInputStream

    /*
    * 实现对图片的复制操作
    *
    *如果只是单纯的复制操作,文本文件和非文本文件都可以处理(底层都是二进制数据)。
    * */
    @Test
    public void test3() {
        FileInputStream fis = null;
        FileOutputStream fos = null;
        try {
            File srcFile = new File("C:\\Users\\asus\\Pictures\\桌面背景图\\校准壁纸.png");
            File destFile = new File("校准壁纸.png");

            fis = new FileInputStream(srcFile);
            fos = new FileOutputStream(destFile);

            byte []buffer = new byte[5];
            int len;
            while((len = fis.read(buffer)) != -1){
                fos.write(buffer,0,len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            if(fis != null){
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(fos != null){
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

    }

4、缓冲流

/*
* 1、缓冲流
* BufferedInputStream
* BufferedOutputStream
* BufferedReader
* BufferedWriter
*
* 2、作用:提供流的读取、写入的速度
*   提高读写速度的原因:内部提供了一个缓冲区
*
* 3、处理流,就是“套接”在已有的流的基础上
* */

4.1、BufferedInputStream/BufferedOutputStream

/*
    * 实现非文本文件的复制
    *
    * */
    @Test
    public void test1()  {
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
//        1、造文件
            File srcFile = new File("校准壁纸.png");
            File destFile = new File("校准壁纸1.png");
//        2、造流
//        2.1 造节点流
            FileInputStream fis = new FileInputStream(srcFile);
            FileOutputStream fos = new FileOutputStream(destFile);
//        2.2 造缓冲流
            bis = new BufferedInputStream(fis);
            bos = new BufferedOutputStream(fos);
//        3 复制的细节:读取、写入
            byte[] buffer = new byte[1024];
            int len;
            while((len = bis.read(buffer)) != -1){
                bos.write(buffer,0,len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //      3、关闭资源
            //        要求:先关闭外层的流,再关闭内层的流
            if(bis != null){
                try {
                    bis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(bos != null){
                try {
                    bos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            //        说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略
//            fis.close();
//            fos.close();
        }
    }

4.2、BufferedReader和BufferedWriter

    @Test
    public void test2(){

        BufferedReader br = null;
        BufferedWriter bw = null;
        try {
            br = new BufferedReader(new FileReader(new File("hello.txt")));
            bw = new BufferedWriter(new FileWriter(new File("hello2.txt")));

            //方式一、使用char[]数组
//            char []buffer = new char[1024];
//            int len;
//            while((len = br.read(buffer)) != -1){
//                bw.write(buffer,0,len);
//            }
            //方式二、使用String
                String data;
                while((data = br.readLine()) != null){
                    //方式一
//                    bw.write(data+"\n");//data中不包含换行符
                    //方式二
                    bw.write(data);
                    bw.newLine();
                }

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if(br != null)
                    br.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                if(bw  != null)
                    bw.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

5、转换流

/*
* 处理流之二、转换流的使用
* 1、转换流
*   InputStreamReader:将一个字节的输入流转换为字符的输入流
*   OutputStreamWriter:将一个字符的输出流转换为字节的输出流
*
* 2、作用:提供字节流与字符流之间的转换
*
* 3、解码:字节、字节数组 --->字符数组、字符串
*    编码:字符数组、字符串 ---> 字节、字节数组
*
* 4、字符集
* */

5.1、InputStreamReader

/*
* InputStreamReader的使用,实现字节的输入流到字符的输入流
* */
    @Test
    public void test1()  {
        FileInputStream fis = null;
        InputStreamReader isr = null;
        try {
            fis = new FileInputStream(new File("hello.txt"));
//        InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集
            //参数二,指明字符集,具体使用哪个字符集取决于文件保存时使用的字符集
            isr = new InputStreamReader(fis,"UTF-8");

            char []cubf = new char[20];
            int len;
            while((len = isr.read(cubf)) != -1){
                System.out.print(new String(cubf,0,len));
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if(isr != null){
                try {
                    isr.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

5.2、综合使用

/*
    * 综合使用InputStreamReader和OutputStreamWriter
    * */
    @Test
    public void test2(){
        InputStreamReader isr = null;
        OutputStreamWriter osw = null;
        try {
            File file = new File("hello.txt");
            File file2 = new File("hello_gbk.txt");

            FileInputStream fis = new FileInputStream(file);
            FileOutputStream fos = new FileOutputStream(file2);

            isr = new InputStreamReader(fis,"utf-8");
            osw = new OutputStreamWriter(fos,"gbk");//以gbk字符集的形式写入文件

            char buffer[] = new char[10];
            int len;
            while((len = isr.read(buffer)) != -1){
                osw.write(buffer,0,len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if(osw != null)
                    osw.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                if(isr != null)
                    isr.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

6、标准的输入流,输出流

  • System.in和System.out分别代表了系统标准的输入和输出设备
  • 默认输入设备是:键盘,输出设备是:显示器
  • System.in的类型是InputStream
  • System.out的类型是PrintStream,其是OutputStream的子类
    • FilterOutputStream的子类
  • 重定向:通过System类的setln,setOut方法对默认设备进行改变
    • public static void setln(InputStream in)
    • public static void setOut(PrintStream out)
public class OtherStreamTest {

    /*
    * 1、标准的输入、输出流
    * 1.1
    * System.in:标准的输入流,默认从键盘输入
    * System.out:标准的输出流,默认从控制台输出
    * 1.2
    * System类的setIn(InputStream is)/setOut(PrintStream ps)方式重新指定输入和输出的流
    *
    * 1.3练习:
    * 从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续进行输入操作
    * 知道当输入'e'或者"exit"时,退出程序
    * */
    public static void main(String[] args) {
        BufferedReader br = null;
        try {
            InputStreamReader isr = new InputStreamReader(System.in);//从键盘输入
            br = new BufferedReader(isr);

            String date;
            while(true){
                String data = br.readLine();
                if("e".equalsIgnoreCase(data)||"exit".equalsIgnoreCase(data)){
                    System.out.println("程序结束");
                    break;
                }
                String s = data.toUpperCase();
                System.out.println(s);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if(br != null){
                try {
                    br.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

7、打印流

  • 实现将 基本数据类型 的数据格式转化为字符串输出
  • 打印流:PrintStream和PrintWriter
    • 提供了一系列重载的print()和print()方法,用于多种数据类型的输出
    • PrintStream和PrintWriter的输出不会抛出IOException异常
    • PrintStream和PrintWriter的自动flush功能
    • PrintStream打印的所有字符都使用平台默认字符编码转换为字节。在需要写入字符而不是写入字节的情况下,应该使用PrintWriter类
    • System.out返回的是PrintStream的实例
    public void test2(){
        PrintStream ps = null;
        try{
            FileOutputStream fos = new FileOutputStream(new File("hello1.txt"));
//            创建打印输出流,设置为自动刷新模式(写入换行符或字节'\n'时都会刷新缓冲区)
            ps = new PrintStream(fos,true);
            if(ps != null){//把标准输出流(控制台输出)改成文件
                System.out.println(ps);
            }
            for(int i = 0; i <= 255; i++){//ASCII字符
                System.out.println((char)i);
                if(i % 50 == 0){//每50个数据一行
                    System.out.println();//换行
                }
            }
        }catch (FileNotFoundException e){
            e.printStackTrace();
        }finally {
            if(ps != null)
                ps.close();
        }

8、数据流

  • 为了方便地操作java语言地基本数据类型和String的数据,可以使用数据流。
  • 数据流有两个类(用于读取和写出基本数据类型、String类的数据)
    • DataInputStream和DataOutputSteam
    • 分别”套接“在InputStream和OutputStream子类的流上
  • DataInputStream中的方法
    • boolean readBoolean()
    • byte readByte()
    • char readChar()
    • float readFloat()
    • double readDouble()
    • short readShort()
    • long readLong()
    • int readInt()
    • String readUTF() void readFully(byte[] b)
  • DataOutputStream中的方法
    • 将上述的方法的read改为相应的write即可

存数据

//    数据流
    @Test
    public void test3()  {
//        练习:将内存中的字符串、基本数据类型的变量写出到文件中
        DataOutputStream dos = null;
        try {
            dos = new DataOutputStream(new FileOutputStream("hello1.txt"));

            dos.writeUTF("刘建成");
            dos.flush();
            dos.writeInt(23);
            dos.flush();
            dos.writeBoolean(true);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if(dos != null)
                    dos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

//存到文件中的数据:  	刘建成   

取数据

  /*
    * 将文件中存储的基本数据类型变量和字符串读取到内存中,保存在变量中。
    *
    * 注意点:读取不同类型数据的顺序要与当初写入文件时保存的树的顺序一致
    * */
    @Test
    public void test4(){
        DataInputStream dis = null;
        try {
            dis = new DataInputStream(new FileInputStream("hello1.txt"));

            String name = dis.readUTF();
            int age = dis.readInt();
            boolean sex = dis.readBoolean();

            System.out.println(name);
            System.out.println(age);
            System.out.println(sex);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if(dis != null)
                    dis.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }
//取出的数据:
//	刘建成
//	23
//	true

9、对象流

  • ObjectInputStream和ObjectOutputStream
    • 用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可把java中的对象写入到数据源中,也能把对象从数据源中还原回来。
  • 序列化:用ObjectOytputStream类保存基本类型数据或对象的机制
  • 反序列化:用ObjectInputStream类读取基本类型数据或对象的机制
  • ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量
/*
* 对象流的使用
* 1、ObjectInputStream 和 ObjectOutputStream
* 2、作用:用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可把java中的对象写入到数据源中,也能把对象从数据源中还原回来
* 3、
* */
public class ObjectInputOutputStreamTest {

    /*
    * 序列化过程:将内存中的java对象保存到磁盘中或通过网络传输出去
    * 使用ObjectOutputStream实现
    *
    * 要求:
    * 1、序列化的对象需要可序列化
    *   要满足一下要求方可序列化
    *       >需要实现接口:Serializable
    *       >需要当前类提供一个全局常量serialVersionUID: public static final long serialVersionUID = 47546353432L
    * */
    @Test
    public void test1()  {
        ObjectOutputStream oos = null;
        try {
            oos = new ObjectOutputStream(new FileOutputStream("hello1.txt"));

            oos.writeObject(new String("我爱北京天安门"));
            oos.flush();//刷新操作
            oos.writeObject(new Person("jdioasjio", 20));
            oos.flush();//刷新操作
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if(oos != null)
                    oos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    /*
    * 反序列化
    * */
    @Test
    public void test2(){
        ObjectInputStream ois = null;
        try {
            ois = new ObjectInputStream(new FileInputStream("hello1.txt"));

            Object o = ois.readObject();
            Person p = (Person) ois.readObject();

            System.out.println((String)o);
            System.out.println(p);
        } catch (IOException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } finally {
            try {
                if(ois != null)
                    ois.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }
}

public class Person implements Serializable {//实现接口
    String name;
    int age;

    //需要当前类提供一个全局常量serialVersionUID: public static final long serialVersionUID = 47546353432L
    public static final long serialVersionUID = 4754635345321L;

    public Person() {
    }

10、随机存储文件流

RandomAccessFile类

  • RandomAccessFile声明在java.io包下,但直接继承于Java.lang.Object类。并且它实现了DataInput、DataOutput这两个接口,也意味着这个类既可以读也可以写。
  • RandomAccessFile类支持 随机访问 的方式,程序可以直接跳到文件的任意地方来读、写文件
    • 支持只访问文件的部分内容
    • 可以向已存在的文件后追加内
  • RandomAccessFile对象包含一个记录指针,用以标示当前读写处的位置。RandomAccessFile类对象可以自由移动记录指针:
    • long getFilePointer():获取文件记录指针的当前位置
    • void seek(long pos):将文件记录指针定位到pos位置
  • 构造器
    • public RandomAccessFile(File file,String mode)
    • public RandomAccessFile(String name,String mode)
  • 创建RandomAccessFile类实力需要指定一个mode参数,改参数指定RandomAccessFile的访问模式
    • r:以只读方式打开
    • rw:打开以便读取和写入
    • rwd:打开以便读取和写入;同步文件内容的更新
    • rws:打开以便读取和写入;同步文件内容和元数据的更新
  • 如果模式只读r。则不会创建文件,而是会去读取一个已经存在的文件,如果读取的文件不存在则会出现异常。如果模式为rw读写。如果文件不存在则会去创建文件,如果存在则不会创建。
/*
* RandomAccessFile
* 1、RandomAccessFile直接继承于java.lang.Object类,实现了DataInput和DataOutput接口
* 2、RandomAccessFile既可以作为一个输入流也可以作为一个输出流
* 3、如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建
*   如果写出到的文件存在,则会对原有文件内容进行覆盖。(默认情况下,从头覆盖)
* 4、可以通过相关操作,实现RandomAccessFile 插入 数据的效果
* */
public class RandomAccessFileTest {
    @Test
    public void test1(){
        RandomAccessFile raf1 = null;
        RandomAccessFile raf2 = null;
        try {
            raf1 = new RandomAccessFile(new File("hello1.txt"),"r");
            raf2 = new RandomAccessFile(new File("hello2.txt"),"rw");

            byte[] buff = new byte[1024];
            int len;
            while((len = raf1.read(buff)) != -1){
                raf2.write(buff,0,len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            try {
                if(raf1 != null)
                    raf1.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                if(raf2 != null)
                    raf2.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    /*
    * 使用RandomAccessFile实现数据的插入效果
    * */
    @Test
    public void test2(){

        RandomAccessFile raf1 = null;
        try {
            raf1 = new RandomAccessFile("hello1.txt","rw");
            //将3后面的数据读出并保存
            raf1.seek(3);//将指针调到角标为3的位置
            //保存指针3后面的数据
            StringBuilder builder = new StringBuilder((int)new File("hello1.txt").length());
            byte[] buffer = new byte[20];
            int len;
            while((len = raf1.read(buffer)) != -1){
                builder.append(new String(buffer,0,len));
            }
            //此时指针指向文本的末尾,需要调回指针
            raf1.seek(3);
            //写入数据
            raf1.write("abc".getBytes());
            //将原有的数据写入
            raf1.write(new String(builder).getBytes());
        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            try {
                if(raf1 != null)
                    raf1.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }
}

13、NIO.2中Path、Paths、Files类的使用

posted @ 2021-10-09 16:52  黯渊  阅读(79)  评论(0编辑  收藏  举报