java IO流

目录

IO流

1. 文件

1.1 概念

  • 文件是什么
    文件是保存数据的地方,比如word文档,txt文件,excel文件等都是文件。
  • 文件流
    文件在程序中是以流的形式来操作的。
    流:数据在数据源(文件)和程序(内存)之间经历的路径。

1.2 常用文件操作

  • 创建文件对象相关构造器和方法
    相关方法:

    方法说明
    new File(String pathname)根据路径构建一个File对象
    new File(File parent,String child)根据父目录文件+子路径构建
    new File(String parent,String child)根据父目录+子路径构建
    import org.junit.jupiter.api.Test;
    import java.io.File;
    import java.io.IOException;
    
    public class FIleCreate {
        public static void main(String[] args) {
    
        }
    
        // 方式一 new File(String pathname)
        @Test
        public void create01() {
            String filepath = "e:\\news1.txt";
            // 只有执行了 createNewFile 方法,才会真正在磁盘创建文件
            File file = new File(filepath);
    
            try {
                file.createNewFile();
                System.out.println("文件创建成功。");
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    
        // 方式二 new File(File parent,String child)
        @Test
        public void create02() {
            File parentFile = new File("e:\\");
            String fileName = "news2.txt";
            File file = new File(parentFile, fileName);
    
            try {
                file.createNewFile();
                System.out.println("文件创建成功!");
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    
        // 方式三 new File(String parent,String child)
        @Test
        public void create03() {
            String parentPath = "e:\\";
            String fileName = "news3.txt";
            File file = new File(parentPath, fileName);
    
            try {
                file.createNewFile();
                System.out.println("文件创建成功~");
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    
  • 获取文件相关信息

    import org.junit.jupiter.api.Test;
    import java.io.File;
    
    public class FileInformation {
        public static void main(String[] args) {
    
        }
    
        // 获取文件信息
        @Test
        public void info() {
            // 先创建文件对象
            File file = new File("e:\\news1.txt");
    
            // 调用方法
            System.out.println("文件名称:" + file.getName()); // news1.txt
            System.out.println("文件绝对路径:" + file.getAbsolutePath()); // e:\news1.txt
            System.out.println("文件父级目录:" + file.getParent());   // e:\
            System.out.println("文件大小(字节):" + file.length());   // 0
            System.out.println("文件是否存在:" + file.exists());  // T
            System.out.println("是不是一个文件:" + file.isFile()); // T
            System.out.println("是不是一个目录:" + file.isDirectory());    // F
    
        }
    
    }
    
  • 目录操作和文件的删除
    mkdir创建一级目录,mkdirs创建多级目录,delete删除空目录或文件。

    import org.junit.jupiter.api.Test;
    import java.io.File;
    
    public class Directory_ {
        public static void main(String[] args) {
    
        }
    
        // 判断e:\\news1.txt 是否存在,如果存在就删除
        @Test
        public void m1() {
            String filePath = "e:\\news1.txt";
            File file = new File(filePath);
            if (file.exists()) {
                if (file.delete()) {
                    System.out.println("删除成功");
                } else {
                    System.out.println("删除失败");
                }
            } else {
                System.out.println("该文件不存在");
            }
        }
    
        //判断e:\\demo02 是否存在,存在就删除,否则提示不存在
        @Test
        public void m2() {
            String filePath = "e:\\demo02";
            File file = new File(filePath);
            if (file.exists()) {
                if (file.delete()) {
                    System.out.println("删除成功");
                } else {
                    System.out.println("删除失败");
                }
            } else {
                System.out.println("该目录不存在");
            }
        }
    
        //判断E:\\demo\\a\\b\\c目录是否存在,如果存在就提示已经存在,否则就创建
        @Test
        public void m3() {
            String directorypath = "e:\\demo\\a\\b\\c";
            File file = new File(directorypath);
            if (file.exists()) {
                System.out.println("目录存在");
            } else {
                if (file.mkdirs()) {
                    System.out.println("该目录创建成功");
                } else {
                    System.out.println("创建失败");
                }
            }
        }
    
    }
    

2. IO流原理及流的分类

2.1 IO流原理

  1. I/O是Input/Output的缩写,I/O技术是非常实用的技术, 用于处理数据传输。如读/写文件,网络通讯等。
  2. Java程序中,对于数据的输入/输出操作以“流(stream)”的方式进行。
  3. java.io包下提供了各种“流”类和接口,用以获取不同种类的数据,并通过方法输入或输出数据。

2.2 流的分类

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

  • (抽象基类)字节流字符流
    输入流InputStreamReader
    输出流OutputStreamWriter

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

2.3 常用的类

InputStream:字节输入流。

InputStream抽象类是所有类字节输入流的超类。

常用的子类:

  1. FileInputStream:文件输入流
  2. BufferedInputStream:缓冲字节输入流
  3. ObjectInputStream:对象字节输入流

继承关系图


FileInputStream介绍:

构造方法

方法

案例演示:

import org.junit.jupiter.api.Test;
import java.io.FileInputStream;
import java.io.IOException;

public class FileInputStream_ {
    public static void main(String[] args) {

    }

    @Test
    public void readFile01() {
        String filePath = "e:\\hello.txt";
        int readData = 0;
        FileInputStream fileInputStream = null;
        try {
            // 创建 FileInputStream 对象,用于读取文件
            fileInputStream = new FileInputStream(filePath);
            /*
            从该输入流读取一一个字节的数据。如果没有输入可用,此方法将阻止。
            如果返回-1,表示读取完毕
             */
            while ((readData = fileInputStream.read()) != -1) {
                System.out.print((char) readData);  // 转成char显示
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            // 关闭文件流,释放资源
            try {
                fileInputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    @Test
    public void readFile02() {
        String filePath = "e:\\hello.txt";
        int readData = 0;
        // 字节输出
        byte[] buf = new byte[8];
        int readLen = 0;
        FileInputStream fileInputStream = null;
        try {
            // 创建 FileInputStream 对象,用于读取文件
            fileInputStream = new FileInputStream(filePath);
            /*
            从该输入流读取最多b. length字节的数据到字节数组。此方法将阻塞 ,直到某些输入可用。
            如果返回-1,表示读取完毕
            如果读取正常,返回实际读取的字节数
             */
            while ((readLen = fileInputStream.read(buf)) != -1) {
                System.out.print(new String(buf, 0, readLen));  //转为字符串显示
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            // 关闭文件流,释放资源
            try {
                fileInputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

FileOutputStream介绍:

构造方法

方法

案例演示:

import org.junit.jupiter.api.Test;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileOutputStream_ {
    public static void main(String[] args) {

    }

    @Test
    public void writeFile() {
        // 创建 FileOutputStream 对象
        String filePath = "e:\\a.txt";
        FileOutputStream fileOutputStream = null;
        try {

            fileOutputStream = new FileOutputStream(filePath,true);
            // 写入一个字节
            fileOutputStream.write('S');
            // 写入字符串
            String str="hello,world";
            // getBytes() 可以把字符串-->字节数组
            fileOutputStream.write(str.getBytes());
            // 从指定位置的指定字节数组写入
            fileOutputStream.write(str.getBytes(),0,5);

        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            try {
                fileOutputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

注意:

  1. 写入文件时,如果文件不存在,会创建文件(前提是目录存在)。
  2. new FileOutputStream(filePath) 创建方式,当写入内容是, 会覆盖原来的内容;new FileOutputStream(filePath, true) 创建方式,当写入内容是,是追加到文件后面。

案例2:完成图片/音乐的拷贝

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileCopy {
    public static void main(String[] args) {

        String srcFilePath = "d:\\ball.jpg";
        String destFilePath = "e:\\ball.jpg";
        FileInputStream fileInputStream = null;
        FileOutputStream fileOutputStream = null;

        try {
            fileInputStream = new FileInputStream(srcFilePath);
            fileOutputStream = new FileOutputStream(destFilePath);
            // 定义一个字节数组,方便读取
            byte[] buf = new byte[1024];
            int readLen = 0;
            while ((readLen = fileInputStream.read(buf)) != -1) {
                // 读取到就写入文件     边读边写
                fileOutputStream.write(buf, 0, readLen);
            }
            System.out.println("拷贝ok");

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

    }
}

FileReader和FileWriter介绍:

FileReader和FileWriter是字符流,即按照字符来操作IO。

  • FileReader相关方法:

    1. new FileReader(File/String)
    2. read:每次读取单个字符,返回该字符,如果到文件末尾返回-1。
    3. read(char[]):批量读取多个字符到数组,返回读取到的字符数,如果到文件末尾返回-1。

    相关API:

    1. new String(char[]):将char[]转换成String。
    2. new String(char[),off,len):将char[]的指定部分转换成String。
  • FileWriter常用方法:

    1. new FileWriter(File/String):覆盖模式,相当于流的指针在首端。
    2. new FileWriter(File/String,true):追加模式,相当于流的指针在尾端。
    3. write(int):写入单个字符。
    4. write(char[]):写入指定数组。
    5. write(char[],off,len):写入指定数组的指定部分。
    6. write (string) :写入整个字符串。
    7. write(string,off,len):写入字符串的指定部分。

    相关API: String类: toCharArray:将String转换成char[]。

    注意:
    FileWriter使用后,必须要关闭(close)或刷新(flush),否则写入不到指定的文件!

FileReader案例:

import org.junit.jupiter.api.Test;
import java.io.FileReader;
import java.io.IOException;

public class FileReader_ {
    public static void main(String[] args) {
        
    }

    /**
     * 单个字符读取
     */
    @Test
    public void readFile01() {
        String filePath = "e:\\story.txt";
        FileReader fileReader = null;
        int read = 0;
        // 创建FileReader 对象
        try {
            fileReader = new FileReader(filePath);
            // 循环读取,使用read,单个字符读取
            while ((read = fileReader.read()) != -1) {
                System.out.print((char) read);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fileReader != null) {
                try {
                    fileReader.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    /**
     * 字符数组读取文件
     */
    @Test
    public void readFile02() {
        String filePath = "e:\\story.txt";
        FileReader fileReader = null;

        int readLen = 0;
        char[] buf = new char[8];

        try {
            fileReader = new FileReader(filePath);
            // 循环读取,使用read(buf),返回的是实际读取到的字符数
            // 如果返回-1,说明文件结束
            while ((readLen = fileReader.read(buf)) != -1) {
                System.out.print(new String(buf, 0, readLen));
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fileReader != null) {
                try {
                    fileReader.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

FileWriter案例:

import java.io.FileWriter;
import java.io.IOException;

public class FileWriter_ {
    public static void main(String[] args) {

        String filePath = "e:\\note.txt";
        // 创建FileWriter 对象
        FileWriter fileWriter = null;
        char[] chars = {'a', 'b', 'c'};

        try {
            fileWriter = new FileWriter(filePath);
//            1. write(int):写入单个字符。
            fileWriter.write('A');
//            2. write(char[]):写入指定数组。
            fileWriter.write(chars);
//            3. write(char[],off,len):写入指定数组的指定部分。
            fileWriter.write(" 你好北京。".toCharArray(), 0, 3);
//            4. write (string) :写入整个字符串。
            fileWriter.write(" 上海");
//            5. write(string,off,len):写入字符串的指定部分。
            fileWriter.write("上海天津",0,2);

        } catch (IOException e) {
            e.printStackTrace();
        } finally {

            // 一定要关闭流,或者flush刷新才能真正写入数据到文件
            try {
                fileWriter.close();
            } catch (IOException e) {
                e.printStackTrace();
            }

        }
        System.out.println("程序结束..");
    }
}

3. 节点流和处理流

3.1 基本介绍

  • 节点流可以从一个特定的数据源读写数据,如FileReader、 FileWriter。
  • 处理流(也叫包装流)是“连接”在已存在的流(节点流或处理流)之上,为程序提供更为强大的读写功能,也更加灵活,如BufferedReader、BuferedWriter。
  • 节点流和处理流一览图:
    一览图

如,在BufferedReader类中,有属性Reader,即可以封装一个节点流,该节点流可以是任意的,只要是Reader子类。

3.2 区别和联系

  1. 节点流是底层流/低级流,直接跟数据源相接。
  2. 处理流(包装流)包装节点流,既可以消除不同节点流的实现差异,也可以提供更方便的方法来完成输入输出。
  3. 处理流(也叫包装流)对节点流进行包装,使用了修饰器设计模式,不会直接与数据源相连。

模拟修饰器设计模式:

public abstract class Reader_ { // 抽象类
    public abstract void read();
}


public class FileReader_ extends Reader_ {
    @Override
    public void read() {
        System.out.println("读取文件..");
    }
}


public class StringReader_ extends Reader_ {
    @Override
    public void read() {
        System.out.println("读取字符串..");
    }
}


public class BufferedReader_ extends Reader_ {
    private Reader_ reader_;    // 属性是Reader_类型

    // 接收Reader_ 子类对象
    public BufferedReader_(Reader_ reader_) {
        this.reader_ = reader_;
    }

    @Override
    public void read() {
        reader_.read();
    }
}


public class Test_ {
    public static void main(String[] args) {

        BufferedReader_ bufferedReader_1 = new BufferedReader_(new FileReader_());
        bufferedReader_1.read();    // 读取文件..
        BufferedReader_ bufferedReader_2 = new BufferedReader_(new StringReader_());
        bufferedReader_2.read();    // 读取字符串..
    }
}

处理流的功能主要体现在以下两个方面:

  1. 性能的提高:主要以增加缓冲的方式来提高输入输出的效率。
  2. 操作的便捷:处理流可能提供了一系列便捷的方法来一次输入输出大批量的数据, 使用更加灵活方便。

3.3 BufferedReader和BufferedWriter

  • BufferedReader和BufferedWriter属于字符流,是按照字符来读取数据的。
  • 关闭时,只需要关闭外层流即可。

BufferedReader案例:

import java.io.BufferedReader;
import java.io.FileReader;

public class BufferedReader_ {
    public static void main(String[] args) throws Exception {

        String filePath = "e:\\story.txt";
        // 创建 BufferedReader
        BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath));
        // 按行读取
        String line;
        // bufferedReader.readLine()是按行读取文件,当返回nulL时,表示文件读取完毕
        while ((line = bufferedReader.readLine()) != null) {
            System.out.println(line);
        }

        // 关闭流,注意:只需要关闭BufferedReader ,因为底层会自动的去关闭节点流
        bufferedReader.close();

    }
}

BufferedWriter案例:

import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;

public class BufferedWriter_ {
    public static void main(String[] args) throws IOException {
        String filePath = "e:\\ok.txt";

        // 如果需要是追加方式,则需要在节点流的构造器里,使用true
        BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filePath));
        bufferedWriter.write("hello,北京 1");
        bufferedWriter.newLine();   // 换行
        bufferedWriter.write("hello,北京 2");
        bufferedWriter.newLine();
        bufferedWriter.write("hello,北京 3");

        // 关闭流
        bufferedWriter.close();
    }
}


综合案例(拷贝):

import java.io.*;

public class BufferedCopy_ {
    public static void main(String[] args) {

        String srcFilePath = "e:\\story.txt";
        String destFilePath = "e:\\story2.txt";
        BufferedReader br = null;
        BufferedWriter bw = null;
        String line;

        try {
            br = new BufferedReader(new FileReader(srcFilePath));
            bw = new BufferedWriter(new FileWriter(destFilePath));

            // readLine读取一行内容,不包含换行
            while ((line = br.readLine()) != null) {
                // 每读取一行,就写入
                bw.write(line);
                bw.newLine();   // 换行
            }

            System.out.println("拷贝完毕..");

        } catch (IOException e) {
            e.printStackTrace();
        } finally {

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

注意:

BufferedReader和BufferedWriter是按字符操作,不要去操作二进制文件【声音,视频,doc,PDF等】,可能会造成文件损坏。

3.4 BufferedInputStream和BufferedOutputStream

BufferedInputStream介绍

BufferedInputStream是字节流,在创建BufferedInputStream时,会创建一个内部缓冲数组。

构造方法

方法


BufferedOutputStream介绍

BufferedOutputStream是字节流实现缓冲的输出流,可以将多个字节写入底层输出流中,而不必对每次字节写入调用底层系统。

构造方法

方法


应用案例(拷贝):

import java.io.*;

public class BufferedCopy {
    public static void main(String[] args) {
        String srcFilePath = "e:\\ball.jpg";
        String destFilePath = "e:\\basketball.jpg";

        // 创建BufferedInputStream对象 BufferedOutputStream对象
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
            bis = new BufferedInputStream(new FileInputStream(srcFilePath));
            bos = new BufferedOutputStream(new FileOutputStream(destFilePath));

            byte[] buf = new byte[1024];
            int readLen = 0;
            // 当返回-1时,表示文件读取完毕
            while ((readLen = bis.read(buf)) != -1) {
                bos.write(buf, 0, readLen);

            }

            System.out.println("文件拷贝完毕..");

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            // 关闭外层处理流
            try {
                if (bis != null) {
                    bis.close();
                }
                if (bos != null) {
                    bos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

3.5 对象流

ObjectInputStream和ObjectOutputStream基本介绍(处理流):

  1. 功能:提供了对基本类型或对象类型的序列化和反序列化的方法;
  2. ObjectOutputStream提供序列化功能;
  3. ObjectlnputStream提供反序列化功能。

序列化和反序列化:

  1. 序列化就是在保存数据时,保存数据的值数据类型
  2. 反序列化就是在恢复数据时,恢复数据的值数据类型
  3. 需要让某个对象支持序列化机制,则必须让其类是可序列化的,为了让某个类是可序列化的,该类必须实现如下两个接口之一:
    • Serializable ( 这是一个标记接口,没有任何方法)
    • Externalizable

ObjectOutputStream应用案例:

package com.io.outputstream_;

import java.io.FileOutputStream;
import java.io.ObjectOutputStream;

public class ObjectOutputStream_ {
    public static void main(String[] args) throws Exception {
        // 序列化后,保存的文件格式不是纯文本的,而是按照他的格式来保存
        String filePath = "e:\\data.dat";

        ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(filePath));

        // 序列化到e:\data.txt
        oos.writeInt(100);  // int--> Integer(实现了 Serializable)
        oos.writeBoolean(true);
        oos.writeChar('a');
        oos.writeDouble(10.1);
        oos.writeUTF("hello world");

        // 保存一个Dog对象
        oos.writeObject(new Dog("旺财", 2));

        oos.close();
        System.out.println("保存完毕~");

    }
}

Dog类的定义:

package com.io.outputstream_;

import java.io.Serializable;

public class Dog implements Serializable {

        private String name;
        private int age;

        public Dog(String name, int age) {
            this.name = name;
            this.age = age;
        }

        @Override
        public String toString() {
            return "Dog{" +
                    "name='" + name + '\'' +
                    ", age=" + age +
                    '}';
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        public int getAge() {
            return age;
        }

        public void setAge(int age) {
            this.age = age;
        }

}

ObjectInputStream应用案例:

package com.io.inputstream_;

import com.io.outputstream_.Dog;
import java.io.FileInputStream;
import java.io.ObjectInputStream;

public class ObjectInputStream_ {
    public static void main(String[] args) throws Exception{

        // 指定反序列化的文件
        String filePath ="e:\\data.dat";
        ObjectInputStream ois = new ObjectInputStream(new FileInputStream(filePath));

        // 读取:顺序要跟保存的顺序一致,否则会出错
        System.out.println(ois.readInt());
        System.out.println(ois.readBoolean());
        System.out.println(ois.readChar());
        System.out.println(ois.readDouble());
        System.out.println(ois.readUTF());

        Object dog = ois.readObject();
        System.out.println(dog);

        // 调用Dog的方法,需要向下转型
        Dog dog2=(Dog) dog;
        System.out.println(dog2.getName());

        ois.close();

    }
}

注意事项和细节说明:

  1. 读写顺序要一致;
  2. 要求序列化或反序列化对象,需要实现Serializable;
  3. 序列化的类中建议添加SerialVersionUID,为了提高版本的兼容性;
  4. 序列化对象时,默认将里面所有属性都进行序列化,但除了static或transient修饰的成员;
  5. 序列化对象时,要求里面属性的类型也需要实现序列化接口;
  6. 序列化具备可继承性,也就是如果某类已经实现了序列化,则它的所有子类也已经默认实现了序列化。

3.6 标准输入输出流

介绍:

类型默认设备
System.inInputStream键盘
System.outPrintStream显示器
public class InputAndOutput {
    public static void main(String[] args) {

        // System.in 编译类型 InputStream
        //           运行类型 BufferedInputStream
        System.out.println(System.in.getClass());   // class java.io.BufferedInputStream

        // System.out 编译类型 InputStream
        //            运行类型 BufferedInputStream
        System.out.println(System.out.getClass());  // class java.io.PrintStream
        
    }
}

3.7 转换流

InputStreamReader和OutputStreamWriter介绍:

  1. InputStreamReader:Reader的子类,可以将InputStream(字节流)包装成Reader(字符流);
  2. OutputStreamWriter:Writer的子类,实现将OutputStream(字节流)包装成Writer(字符流);
  3. 当处理纯文本数据时,如果使用字符流效率更高,并且可以有效解决中文问题,所以建议将字节流转换成字符流;
  4. 可以在使用时指定编码格式(比如utf:8, gbk , gb2312, IS08859-1等)。

InputStreamReader案例:

import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

public class InputStreamReader_ {
    public static void main(String[] args) throws IOException {

        String filePath = "e:\\a.txt";
        // 把字节流转为字符流
        // 指定编码 gbk
        InputStreamReader isr = new InputStreamReader(new FileInputStream(filePath), "gbk");
        // 把 InputStreamReader 传入 BufferedReader
        BufferedReader br = new BufferedReader(isr);
        // 读取
        String s = br.readLine();
        System.out.println("内容:" + s);

        br.close();

    }
}

OutputStreamWriter案例:

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;

public class OutputStreamWriter_ {
    public static void main(String[] args) throws IOException {
        String filePath = "e:\\cat.txt";
        String charSet = "utf-8";
        OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(filePath), charSet);
        osw.write("hi,上海。");
        osw.close();
        System.out.println("按照" + charSet + "保存");

    }
}

3.8 打印流

打印流只有输出流,没有输入流。

PrintStream案例:

import java.io.IOException;
import java.io.PrintStream;

public class PrintStream_ {
    public static void main(String[] args) throws IOException {

        PrintStream out = System.out;
        // 默认情况下,PrintStream 输出数据的位置是,标准输出,即显示器
        out.print("John ,hello");
        // 因为底层实现的是write() 方法,所以可以直接调用该方法
        out.write("上海你好".getBytes());
        out.close();

        // 可以修改打印流输出的位置
        // 输出修改到 e:\\f1.txt
        System.setOut(new PrintStream("e:\\f1.txt"));
        System.out.println("hello,北京");
    }
}

PrintWriter案例:

import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;

public class PrintWriter_ {
    public static void main(String[] args) throws IOException {

        PrintWriter printWriter = new PrintWriter(new FileWriter("e:\\f2.txt"));
        printWriter.write("hi,北京你好");
        printWriter.close();    // flush + 关闭流,才会将数据写入到文件

    }
}

4. Properties类

4.1 基本介绍

  1. 专门用于读写配置文件的集合类。配置文件的格式:键=值

  2. 注意:键值对不需要有空格,值不需要用引号一起来。默认类型是String。

  3. Properties的常见方法:

    方法说明
    load加载配置文件的键值对到Properties对象
    list将数据显示到指定设备
    getProperty(key)根据键获取值
    setProperty(key,value)设置键值对到Properties对象
    store将Properties中的键值对存储到配置文件,在idea中,保存信息到配置文件,如果含有中文,会存储unicode码

4.2 需求分析

如下一个配置文件mysql.properties
ip = 192.168.100.100
users = root
pwd = 12345
请问编程读取ip、user和pwd的值是多少?

传统解决方法:

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

public class Properties01 {
    public static void main(String[] args) throws IOException {

        // 读取mysql.properties 文件,并得到ip,user和 pwd
        BufferedReader br = new BufferedReader(new FileReader("BasicGrammar\\src\\mysql.properties"));
        String line = "";
        while ((line = br.readLine()) != null) {  // 循环读取
            String[] split = line.split("=");
            System.out.println(split[0] + "值是:" + split[1]);
        }
    }
}

使用Properties类:

import java.io.FileReader;
import java.io.IOException;
import java.util.Properties;

public class Properties02 {
    public static void main(String[] args) throws IOException {
        // 使用Properties 类来读取mysql.properties 文件

        // 1. 创建 Properties 对象
        Properties properties = new Properties();
        // 2. 加载指定配置文件
        properties.load(new FileReader("BasicGrammar\\src\\mysql.properties"));
        // 3. k-v显示到控制台
        properties.list(System.out);
        // 根据key 获取对应的值
        String user = properties.getProperty("user");
        String pwd = properties.getProperty("pwd");
        System.out.println("用户是=" + user);
        System.out.println("密码是=" + pwd);
    }
}

执行的结果为:

结果


使用Properties类添加k-v到新文件:

import java.io.FileWriter;
import java.io.IOException;
import java.util.Properties;

public class Properties03 {
    public static void main(String[] args) throws IOException {

        Properties properties = new Properties();

        // 创建
        //如果没有key就是创建,有就是修改
        properties.setProperty("charSet", "utf-8");
        properties.setProperty("user", "汤姆");
        properties.setProperty("pwd", "123abc");

        // 将k-v 存储文件中即可
        properties.store(new FileWriter("BasicGrammar\\src\\mysql2.properties"), null);
        System.out.println("保存配置文件成功");
    }
}

5. 练习

第一题:(1)在判断e盘下是否有文件夹mytemp,如果没有就创建mytemp;(2)在e: \ \mytemp日录下,创建文件hello. txt;(3)如果hello.txt已经存在,提示该文件已经存在,就不要再重复创建了;(4)并且在创建文件时, 写入“hello, world~”。

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

public class Homework01 {
    public static void main(String[] args) throws IOException {
        String directoryPath = "e:\\mytemp";
        File file = new File(directoryPath);
        if (!file.exists()) {
            // 创建
            if (file.mkdirs()) {
                System.out.println("创建" + directoryPath + "成功");
            } else {
                System.out.println("创建" + directoryPath + "失败");
            }
        }

        String filePath = directoryPath + "\\hello.txt";
        file = new File(filePath);
        if (!file.exists()) {
            // 创建文件
            if (file.createNewFile()) {
                System.out.println("创建" + filePath + "成功");
                // 创建文件后写入内容
                BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filePath));
                bufferedWriter.write("hello,world~");
                bufferedWriter.close();

            } else {
                System.out.println("创建" + filePath + "成功");
            }
        } else {
            System.out.println("文件已存在!");
        }
    }
}

第二题:使用BufferedReader读取一个 文本文件,为每行加上行号,再连同内容一并输出到屏幕上。

import java.io.*;

public class Homework02 {
    public static void main(String[] args) throws IOException {

        String filePath = "e:\\story.txt";
        String line = "";
        int lineNum = 0;
        // 额外使用一个转换流,解决中文乱码问题
        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(new FileInputStream(filePath), "gbk"));
        while ((line = bufferedReader.readLine()) != null) {
            lineNum++;
            System.out.println(lineNum + " " + line);
        }
        bufferedReader.close();

    }
}

第三题:(1)要编写个dog.properties
name= tom
age= 5
color=red
(2)编写Dog类(name,age,color)创建一个dog对象,读取dog.properties用相应的内容完成属性初始化,并输出。(3)将创建的Dog对象,序列化到文件dog.dat文件。

import java.io.*;
import java.util.Properties;

public class Homework03 {
    public static void main(String[] args) throws IOException {

        String filePath = "BasicGrammar\\src\\dog.properties";
        Properties properties = new Properties();
        properties.load(new FileReader(filePath));

        String name = properties.getProperty("name");
        int age = Integer.parseInt(properties.getProperty("age"));
        String color = properties.getProperty("color");

        Dog dog = new Dog(name, age, color);
        System.out.println("---dog对象信息---");
        System.out.println(dog);

        // 序列化      注意:Dog类需要实现接口才能序列化
        String serFilePath = "e:\\dog.dat";
        ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(serFilePath));
        oos.writeObject(dog);
        oos.close();

    }
}

class Dog implements Serializable {
    private String name;
    private int age;
    private String color;

    public Dog(String name, int age, String color) {
        this.name = name;
        this.age = age;
        this.color = color;
    }

    @Override
    public String toString() {
        return "Dog{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", color='" + color + '\'' +
                '}';
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值