File类的使用

1.File类的理解

记住三个单词

**_file_**:__文件
**_directory_**:__文件夹\目录
**_path_**:__路径
1. File类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)
2. File类声明在java.io包下
3. File类中涉及到关于文件或文件目录的创建、删除、重命名、修改时间、文件大小等方法,并未涉及到写入或读取文件内容的操作。如果需要读取或写入文件内容,必须使用IO流来完成。
4. 后续File类的对象常会作为参数传递到流的构造器中,指明读取或写入的”终点”.

2.File的实例化

2.1 常用构造器(构造方法)

File(String Pathname)通过将给定的路径名字符串转换为抽象路径名来创建新的 File实例。
参数:
string pathname:字符串的路径名称
路径可以是以文件结尾,也可以是以文件夹结尾
路径可以是相对路径,也可以是绝对路径
路径可以是存在,也可以是不存在
创建FiLe对象,只是把字符串路径封装为FiLe对象,只是把字符串路径封装为文件对象,不考虑路径的真假情况

File(String parentPath,String childPath)父路径名字符串和子路径名字符串创建新的 File实例。
参数:把路径分成两部分
String parentPath:父路径
String childPath:子路径
File(File parentFile,String childPath)父抽象路径名和子路径名字符串创建新的 File实例。

  1. // 文件路径名
  2. String pathname = "D:\\aaa.txt";
  3. File file1 = new File(pathname);
  4. // 文件路径名
  5. String pathname2 = "D:\\aaa\\bbb.txt";
  6. File file2 = new File(pathname2);
  7. // 通过父路径和子路径字符串
  8. String parent = "d:\\aaa";
  9. String child = "bbb.txt";
  10. File file3 = new File(parent, child);
  11. // 通过父级File对象和子路径字符串
  12. File parentDir = new File("d:\\aaa");
  13. String child = "bbb.txt";
  14. File file4 = new File(parentDir, child);

静态成员变量

static String pathSeparator 与系统有关的路径分隔符,为了方便,它被表示为一个字符串。
static char pathSeparatorChar 与系统有关的路径分隔符。
static String separator 与系统有关的默认名称分隔符,为了方便,它被表示为一个字符串
static char separatorChar 与系统有关的默认名称分隔符。

2.2 路径的分类

相对路径:相较于某个当前项目的根目录路径下,指明的路径。
绝对路径:包含盘符在内的文件或文件目录的路径

路径不区分大小写

说明:
IDEA中:
如果大家开发使用JUnit中的单元测试方法测试,相对路径即为当前Module下。
如果大家使用main()测试,相对路径即为当前的Project下
Eclipse中:
不管使用单元测试方法还是使用main()测试,相对路径都是当前的Project下。

2.3 路径分隔符

注意转义字符
路径分隔符
windows:分号;
linux:冒号:
文件名称分隔符
windows和DOS系统默认使用“\”来表示
UNIX和URL使用“/”来表示

3.File类的常用方法

image.png
image.png
image.png

获取功能的方法

  • public String getAbsolutePath() :返回此File的绝对路径名字符串。
  • public String getPath() :将此File转换为路径名字符串。
  • public String getName() :返回由此File表示的文件或目录的名称。
  • public long length() :返回由此File表示的文件的长度(大小,字节为单位)。

方法演示,代码如下:

  1. public class FileGet {
  2. public static void main(String[] args) {
  3. File f = new File("d:/aaa/bbb.java");
  4. System.out.println("文件绝对路径:"+f.getAbsolutePath());
  5. System.out.println("文件构造路径:"+f.getPath());
  6. System.out.println("文件名称:"+f.getName());
  7. System.out.println("文件长度:"+f.length()+"字节");
  8. File f2 = new File("d:/aaa");
  9. System.out.println("目录绝对路径:"+f2.getAbsolutePath());
  10. System.out.println("目录构造路径:"+f2.getPath());
  11. System.out.println("目录名称:"+f2.getName());
  12. System.out.println("目录长度:"+f2.length());
  13. }
  14. }
  15. 输出结果:
  16. 文件绝对路径:d:\aaa\bbb.java
  17. 文件构造路径:d:\aaa\bbb.java
  18. 文件名称:bbb.java
  19. 文件长度:636字节
  20. 目录绝对路径:d:\aaa
  21. 目录构造路径:d:\aaa
  22. 目录名称:aaa
  23. 目录长度:4096

绝对路径和相对路径

  • 绝对路径:从盘符开始的路径,这是一个完整的路径。
  • 相对路径:相对于项目目录的路径,这是一个便捷的路径,开发中经常使用。

    1. public class FilePath {
    2. public static void main(String[] args) {
    3. // D盘下的bbb.java文件
    4. File f = new File("D:\\bbb.java");
    5. System.out.println(f.getAbsolutePath());
    6. // 项目下的bbb.java文件
    7. File f2 = new File("bbb.java");
    8. System.out.println(f2.getAbsolutePath());
    9. }
    10. }
    11. 输出结果:
    12. D:\bbb.java
    13. D:\idea_project_test4\bbb.java

    判断功能的方法

  • public boolean exists() :此File表示的文件或目录是否实际存在。

  • public boolean isDirectory() :此File表示的是否为目录(文件夹)。
  • public boolean isFile() :此File表示的是否为文件。
  • 获取文件/文件夹先判段存不存在

方法演示,代码如下:

  1. public class FileIs {
  2. public static void main(String[] args) {
  3. File f = new File("d:\\aaa\\bbb.java");
  4. File f2 = new File("d:\\aaa");
  5. // 判断是否存在
  6. System.out.println("d:\\aaa\\bbb.java 是否存在:"+f.exists());
  7. System.out.println("d:\\aaa 是否存在:"+f2.exists());
  8. // 判断是文件还是目录
  9. System.out.println("d:\\aaa 文件?:"+f2.isFile());
  10. System.out.println("d:\\aaa 目录?:"+f2.isDirectory());
  11. }
  12. }
  13. 输出结果:
  14. d:\aaa\bbb.java 是否存在:true
  15. d:\aaa 是否存在:true
  16. d:\aaa 文件?:false
  17. d:\aaa 目录?:true

创建删除功能的方法

  • public boolean createNewFile() :当且仅当具有该名称的文件尚不存在时,创建一个新的空文件。

创建文件必须存在否则抛出异常
public boolean createNewFile() throws IOException
createNewFile 声明抛出了IOException,我们调用这个方法,就必须处理这个异常, 要么throws,要么try catch

  • public boolean delete() :删除由此File表示的文件或目录。
  • public boolean mkdir() :创建由此File表示的单级空目录。
  • public boolean mkdirs() :创建由此File表示的单级/多级空目录,包括任何必需但不存在的父目录。

方法演示,代码如下:

  1. public class FileCreateDelete {
  2. public static void main(String[] args) throws IOException {
  3. // 文件的创建
  4. File f = new File("aaa.txt");
  5. System.out.println("是否存在:"+f.exists()); // false
  6. System.out.println("是否创建:"+f.createNewFile()); // true
  7. System.out.println("是否存在:"+f.exists()); // true
  8. // 目录的创建
  9. File f2= new File("newDir");
  10. System.out.println("是否存在:"+f2.exists());// false
  11. System.out.println("是否创建:"+f2.mkdir()); // true
  12. System.out.println("是否存在:"+f2.exists());// true
  13. // 创建多级目录
  14. File f3= new File("newDira\\newDirb");
  15. System.out.println(f3.mkdir());// false
  16. File f4= new File("newDira\\newDirb");
  17. System.out.println(f4.mkdirs());// true
  18. // 文件的删除
  19. System.out.println(f.delete());// true
  20. // 目录的删除
  21. System.out.println(f2.delete());// true
  22. System.out.println(f4.delete());// false
  23. }
  24. }

目录的遍历

  • public String[] list() :返回一个String数组,表示该File目录中的所有子文件或目录。
  • public File[] listFiles() :返回一个File数组,表示该File目录中的所有的子文件或目录。

    1. public class FileFor {
    2. public static void main(String[] args) {
    3. File dir = new File("d:\\java_code");
    4. //获取当前目录下的文件以及文件夹的名称。
    5. String[] names = dir.list();
    6. for(String name : names){
    7. System.out.println(name);
    8. }
    9. //获取当前目录下的文件以及文件夹对象,只要拿到了文件对象,那么就可以获取更多信息
    10. File[] files = dir.listFiles();
    11. for (File file : files) {
    12. System.out.println(file);
    13. }
    14. }
    15. }

    调用listFiles方法的File对象,表示的必须是实际存在的目录,否则返回null,无法进行遍历。

    IO流概述

    生活中,你肯定经历过这样的场景。当你编辑一个文本文件,忘记了ctrl+s ,可能文件就白白编辑了。当你电脑上插入一个U盘,可以把一个视频,拷贝到你的电脑硬盘里。那么数据都是在哪些设备上的呢?键盘、内存、硬盘、外接设备等等。
    我们把这种数据的传输,可以看做是一种数据的流动,按照流动的方向,以内存为基准,分为输入input 和输出output ,即流向内存是输入流,流出内存的输出流。
    Java中I/O操作主要是指使用java.io包下的内容,进行输入、输出操作。输入也叫做读取数据,输出也叫做作写出数据。

    1.流的分类

    1.操作数据单位:
    字节流:以字节为单位,读写数据的流。
    字符流:以字符为单位,读写数据的流。
    2.数据的流向:
    输入流:把数据从其他设备上读取到内存中的流。
    输出流:把数据从内存 中写出到其他设备上的流。
    3.流的角色:
    节点流
    处理流
    图示:
    image.png
    1_io.jpg

    2.流的体系结构

    image.png
    说明:红框对应的是IO流中的4个抽象基类。
    蓝框的流需要大家重点关注。

    顶级父类们

    | 输入流 | 输出流 | | | —- | —- | —- | | 字节流 | 字节输入流InputStream | 字节输出流OutputStream | | 字符流 | 字符输入流Reader | 字符输出流Writer |

3.重点说明的几个流结构

image.png

4.输入、输出的标准化过程

4.1 输入过程

① 创建File类的对象,指明读取的数据的来源。(要求此文件一定要存在)
② 创建相应的输入流,将File类的对象作为参数,传入流的构造器中
③ 具体的读入过程:
创建相应的byte[] 或 char[]。
④ 关闭流资源
说明:程序中出现的异常需要使用try-catch-finally处理。

4.2 输出过程

① 创建File类的对象,指明写出的数据的位置。(不要求此文件一定要存在)
② 创建相应的输出流,将File类的对象作为参数,传入流的构造器中
③ 具体的写出过程:
write(char[]/byte[] buffer,0,len)
④ 关闭流资源
说明:程序中出现的异常需要使用try-catch-finally处理。

节点流(或文件流)

一切皆为字节

一切文件数据(文本、图片、视频等)在存储时,都是以二进制数字的形式保存,都一个一个的字节,那么传输时一样如此。所以,字节流可以传输任意文件数据。在操作流的时候,我们要时刻明确,无论使用什么样的流对象,底层传输的始终为二进制数据。

1.FileReader/FileWriter的使用:

1.1 FileReader的使用

  1. /*
  2. 将day09下的hello.txt文件内容读入程序中,并输出到控制台
  3. 说明点:
  4. 1. read()的理解:返回读入的一个字符。如果达到文件末尾,返回-1
  5. 2. 异常的处理:为了保证流资源一定可以执行关闭操作。需要使用try-catch-finally处理
  6. 3. 读入的文件一定要存在,否则就会报FileNotFoundException。
  7. */
  8. @Test
  9. public void testFileReader1() {
  10. FileReader fr = null;
  11. try {
  12. //1.File类的实例化
  13. File file = new File("hello.txt");
  14. //2.FileReader流的实例化
  15. fr = new FileReader(file);
  16. //3.读入的操作
  17. //read(char[] cbuf):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
  18. char[] cbuf = new char[5];
  19. int len;
  20. while((len = fr.read(cbuf)) != -1){
  21. //方式一:
  22. //错误的写法
  23. // for(int i = 0;i < cbuf.length;i++){
  24. // System.out.print(cbuf[i]);
  25. // }
  26. //正确的写法
  27. // for(int i = 0;i < len;i++){
  28. // System.out.print(cbuf[i]);
  29. // }
  30. //方式二:
  31. //错误的写法,对应着方式一的错误的写法
  32. // String str = new String(cbuf);
  33. // System.out.print(str);
  34. //正确的写法
  35. String str = new String(cbuf,0,len);
  36. System.out.print(str);
  37. }
  38. } catch (IOException e) {
  39. e.printStackTrace();
  40. } finally {
  41. if(fr != null){
  42. //4.资源的关闭
  43. try {
  44. fr.close();
  45. } catch (IOException e) {
  46. e.printStackTrace();
  47. }
  48. }
  49. }
  50. }

1.2 FileWriter的使用

  1. /*
  2. 从内存中写出数据到硬盘的文件里。
  3. 说明:
  4. 1. 输出操作,对应的File可以不存在的。并不会报异常
  5. 2.
  6. File对应的硬盘中的文件如果不存在,在输出的过程中,会自动创建此文件。
  7. File对应的硬盘中的文件如果存在:
  8. 如果流使用的构造器是:FileWriter(file,false) / FileWriter(file):对原文件的覆盖
  9. 如果流使用的构造器是:FileWriter(file,true):不会对原文件覆盖,而是在原文件基础上追加内容
  10. */
  11. @Test
  12. public void testFileWriter() {
  13. FileWriter fw = null;
  14. try {
  15. //1.提供File类的对象,指明写出到的文件
  16. File file = new File("hello1.txt");
  17. //2.提供FileWriter的对象,用于数据的写出
  18. fw = new FileWriter(file,false);
  19. //3.写出的操作
  20. fw.write("I have a dream!\n");
  21. fw.write("you need to have a dream!");
  22. } catch (IOException e) {
  23. e.printStackTrace();
  24. } finally {
  25. //4.流资源的关闭
  26. if(fw != null){
  27. try {
  28. fw.close();
  29. } catch (IOException e) {
  30. e.printStackTrace();
  31. }
  32. }
  33. }
  34. }

1.3 文本文件的复制:

  1. @Test
  2. public void testFileReaderFileWriter() {
  3. FileReader fr = null;
  4. FileWriter fw = null;
  5. try {
  6. //1.创建File类的对象,指明读入和写出的文件
  7. File srcFile = new File("hello.txt");
  8. File destFile = new File("hello2.txt");
  9. //不能使用字符流来处理图片等字节数据
  10. // File srcFile = new File("爱情与友情.jpg");
  11. // File destFile = new File("爱情与友情1.jpg");
  12. //2.创建输入流和输出流的对象
  13. fr = new FileReader(srcFile);
  14. fw = new FileWriter(destFile);
  15. //3.数据的读入和写出操作
  16. char[] cbuf = new char[5];
  17. int len;//记录每次读入到cbuf数组中的字符的个数
  18. while((len = fr.read(cbuf)) != -1){
  19. //每次写出len个字符
  20. fw.write(cbuf,0,len);
  21. }
  22. } catch (IOException e) {
  23. e.printStackTrace();
  24. } finally {
  25. //4.关闭流资源
  26. //方式一:
  27. // try {
  28. // if(fw != null)
  29. // fw.close();
  30. // } catch (IOException e) {
  31. // e.printStackTrace();
  32. // }finally{
  33. // try {
  34. // if(fr != null)
  35. // fr.close();
  36. // } catch (IOException e) {
  37. // e.printStackTrace();
  38. // }
  39. // }
  40. //方式二:
  41. try {
  42. if(fw != null)
  43. fw.close();
  44. } catch (IOException e) {
  45. e.printStackTrace();
  46. }
  47. try {
  48. if(fr != null)
  49. fr.close();
  50. } catch (IOException e) {
  51. e.printStackTrace();
  52. }
  53. }
  54. }

2.FileInputStream / FileOutputStream的使用:

1. 对于文本文件(.txt,.java,.c,.cpp),使用字符流处理
2. 对于非文本文件(.jpg,.mp3,.mp4,.avi,.doc,.ppt,…),使用字节流处理

字节输出流【OutputStream】

java.io.OutputStream抽象类是表示字节输出流的所有类的超类,将指定的字节信息写出到目的地。它定义了字节输出流的基本共性功能方法。

  • public void close() :关闭此输出流并释放与此流相关联的任何系统资源。
  • public void flush() :刷新此输出流并强制任何缓冲的输出字节被写出。
  • public void write(byte[] b):将 b.length字节从指定的字节数组写入此输出流。
  • public void write(byte[] b, int off, int len) :从指定的字节数组写入 len字节,从偏移量 off开始输出到此输出流。
  • public abstract void write(int b) :将指定的字节输出流。

小贴士:
close方法,当完成流的操作时,必须调用此方法,释放系统资源。

FileOutputStream类

OutputStream有很多子类,我们从最简单的一个子类开始。
java.io.FileOutputStream类是文件输出流,用于将数据写出到文件。

构造方法

  • public FileOutputStream(File file):创建文件输出流以写入由指定的 File对象表示的文件。
  • public FileOutputStream(String name): 创建文件输出流以指定的名称写入文件。

当你创建一个流对象时,必须传入一个文件路径。该路径下,如果没有这个文件,会创建该文件。如果有这个文件,会清空这个文件的数据。
构造举例,代码如下:

  1. public class FileOutputStreamConstructor throws IOException {
  2. public static void main(String[] args) {
  3. // 使用File对象创建流对象
  4. File file = new File("a.txt");
  5. FileOutputStream fos = new FileOutputStream(file);
  6. // 使用文件名称创建流对象
  7. FileOutputStream fos = new FileOutputStream("b.txt");
  8. }
  9. }

写出字节数据

写出字节:write(int b) 方法,每次可以写出一个字节数据,代码使用演示:

  1. public class FOSWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileOutputStream fos = new FileOutputStream("fos.txt");
  5. // 写出数据
  6. fos.write(97); // 写出第1个字节
  7. fos.write(98); // 写出第2个字节
  8. fos.write(99); // 写出第3个字节
  9. // 关闭资源
  10. fos.close();
  11. }
  12. }
  13. 输出结果:
  14. abc

小贴士:

  1. 虽然参数为int类型四个字节,但是只会保留一个字节的信息写出。
  2. 流操作完毕后,必须释放系统资源,调用close方法,千万记得。

写出字节数组:write(byte[] b),每次可以写出数组中的数据,代码使用演示:

  1. public class FOSWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileOutputStream fos = new FileOutputStream("fos.txt");
  5. // 字符串转换为字节数组
  6. byte[] b = "黑马程序员".getBytes();
  7. // 写出字节数组数据
  8. fos.write(b);
  9. // 关闭资源
  10. fos.close();
  11. }
  12. }
  13. 输出结果:
  14. 黑马程序员

写出指定长度字节数组:write(byte[] b, int off, int len) ,每次写出从off索引开始,len个字节,代码使用演示:

  1. public class FOSWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileOutputStream fos = new FileOutputStream("fos.txt");
  5. // 字符串转换为字节数组
  6. byte[] b = "abcde".getBytes();
  7. // 写出从索引2开始,2个字节。索引2是c,两个字节,也就是cd。
  8. fos.write(b,2,2);
  9. // 关闭资源
  10. fos.close();
  11. }
  12. }
  13. 输出结果:
  14. cd

数据追加续写

经过以上的演示,每次程序运行,创建输出流对象,都会清空目标文件中的数据。如何保留目标文件中数据,还能继续添加新数据呢?

  • public FileOutputStream(File file, boolean append): 创建文件输出流以写入由指定的 File对象表示的文件。
  • public FileOutputStream(String name, boolean append): 创建文件输出流以指定的名称写入文件。

这两个构造方法,参数中都需要传入一个boolean类型的值,true 表示追加数据,false 表示清空原有数据。这样创建的输出流对象,就可以指定是否追加续写了,代码使用演示:

  1. public class FOSWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileOutputStream fos = new FileOutputStream("fos.txt"true);
  5. // 字符串转换为字节数组
  6. byte[] b = "abcde".getBytes();
  7. // 写出从索引2开始,2个字节。索引2是c,两个字节,也就是cd。
  8. fos.write(b);
  9. // 关闭资源
  10. fos.close();
  11. }
  12. }
  13. 文件操作前:cd
  14. 文件操作后:cdabcde

写出换行

Windows系统里,换行符号是\r\n 。把
以指定是否追加续写了,代码使用演示:

  1. public class FOSWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileOutputStream fos = new FileOutputStream("fos.txt");
  5. // 定义字节数组
  6. byte[] words = {97,98,99,100,101};
  7. // 遍历数组
  8. for (int i = 0; i < words.length; i++) {
  9. // 写出一个字节
  10. fos.write(words[i]);
  11. // 写出一个换行, 换行符号转成数组写出
  12. fos.write("\r\n".getBytes());
  13. }
  14. // 关闭资源
  15. fos.close();
  16. }
  17. }
  18. 输出结果:
  19. a
  20. b
  21. c
  22. d
  23. e
  • 回车符\r和换行符\n
    • 回车符:回到一行的开头(return)。
    • 换行符:下一行(newline)。
  • 系统中的换行:
    • Windows系统里,每行结尾是 回车+换行 ,即\r\n
    • Unix系统里,每行结尾只有 换行 ,即\n
    • Mac系统里,每行结尾是 回车 ,即\r。从 Mac OS X开始与Linux统一。

字节输入流【InputStream】

java.io.InputStream抽象类是表示字节输入流的所有类的超类,可以读取字节信息到内存中。它定义了字节输入流的基本共性功能方法。

  • public void close() :关闭此输入流并释放与此流相关联的任何系统资源。
  • public abstract int read(): 从输入流读取数据的下一个字节。
  • public int read(byte[] b): 从输入流中读取一些字节数,并将它们存储到字节数组 b中 。

    小贴士: close方法,当完成流的操作时,必须调用此方法,释放系统资源。

FileInputStream类

java.io.FileInputStream类是文件输入流,从文件中读取字节。

构造方法

  • FileInputStream(File file): 通过打开与实际文件的连接来创建一个 FileInputStream ,该文件由文件系统中的 File对象 file命名。
  • FileInputStream(String name): 通过打开与实际文件的连接来创建一个 FileInputStream ,该文件由文件系统中的路径名 name命名。

当你创建一个流对象时,必须传入一个文件路径。该路径下,如果没有该文件,会抛出FileNotFoundException

  • 构造举例,代码如下:

    1. public class FileInputStreamConstructor throws IOException{
    2. public static void main(String[] args) {
    3. // 使用File对象创建流对象
    4. File file = new File("a.txt");
    5. FileInputStream fos = new FileInputStream(file);
    6. // 使用文件名称创建流对象
    7. FileInputStream fos = new FileInputStream("b.txt");
    8. }
    9. }

    读取字节数据

    读取字节read方法,每次可以读取一个字节的数据,提升为int类型,读取到文件末尾,返回-1,代码使用演示:

    1. public class FISRead {
    2. public static void main(String[] args) throws IOException{
    3. // 使用文件名称创建流对象
    4. FileInputStream fis = new FileInputStream("read.txt");
    5. // 读取数据,返回一个字节
    6. int read = fis.read();
    7. System.out.println((char) read);
    8. read = fis.read();
    9. System.out.println((char) read);
    10. read = fis.read();
    11. System.out.println((char) read);
    12. read = fis.read();
    13. System.out.println((char) read);
    14. read = fis.read();
    15. System.out.println((char) read);
    16. // 读取到末尾,返回-1
    17. read = fis.read();
    18. System.out.println( read);
    19. // 关闭资源
    20. fis.close();
    21. }
    22. }
    23. 输出结果:
    24. a
    25. b
    26. c
    27. d
    28. e
    29. -1

    循环改进读取方式,代码使用演示:

    1. public class FISRead {
    2. public static void main(String[] args) throws IOException{
    3. // 使用文件名称创建流对象
    4. FileInputStream fis = new FileInputStream("read.txt");
    5. // 定义变量,保存数据
    6. int b
    7. // 循环读取
    8. while ((b = fis.read())!=-1) {
    9. System.out.println((char)b);
    10. }
    11. // 关闭资源
    12. fis.close();
    13. }
    14. }
    15. 输出结果:
    16. a
    17. b
    18. c
    19. d
    20. e

    小贴士:

    1. 虽然读取了一个字节,但是会自动提升为int类型。
    2. 流操作完毕后,必须释放系统资源,调用close方法,千万记得。

使用字节数组读取read(byte[] b),每次读取b的长度个字节到数组中,返回读取到的有效字节个数,读取到末尾时,返回-1 ,代码使用演示:

  1. public class FISRead {
  2. public static void main(String[] args) throws IOException{
  3. // 使用文件名称创建流对象.
  4. FileInputStream fis = new FileInputStream("read.txt"); // 文件中为abcde
  5. // 定义变量,作为有效个数
  6. int len
  7. // 定义字节数组,作为装字节数据的容器
  8. byte[] b = new byte[2];
  9. // 循环读取
  10. while (( len= fis.read(b))!=-1) {
  11. // 每次读取后,把数组变成字符串打印
  12. System.out.println(new String(b));
  13. }
  14. // 关闭资源
  15. fis.close();
  16. }
  17. }
  18. 输出结果:
  19. ab
  20. cd
  21. ed

错误数据d,是由于最后一次读取时,只读取一个字节e,数组中,上次读取的数据没有被完全替换,所以要通过len,获取有效的字节,代码使用演示:

  1. public class FISRead {
  2. public static void main(String[] args) throws IOException{
  3. // 使用文件名称创建流对象.
  4. FileInputStream fis = new FileInputStream("read.txt"); // 文件中为abcde
  5. // 定义变量,作为有效个数
  6. int len
  7. // 定义字节数组,作为装字节数据的容器
  8. byte[] b = new byte[2];
  9. // 循环读取
  10. while (( len= fis.read(b))!=-1) {
  11. // 每次读取后,把数组的有效字节部分,变成字符串打印
  12. System.out.println(new String(b0len));// len 每次读取的有效字节个数
  13. }
  14. // 关闭资源
  15. fis.close();
  16. }
  17. }
  18. 输出结果:
  19. ab
  20. cd
  21. e

小贴士: 使用数组读取,每次读取多个字节,减少了系统间的IO操作次数,从而提高了读写的效率,建议开发中使用。

字节流练习:图片复制

复制原理图解

2_copy.jpg

案例实现

复制图片文件,代码使用演示:

  1. public class Copy {
  2. public static void main(String[] args) throws IOException {
  3. // 1.创建流对象
  4. // 1.1 指定数据源
  5. FileInputStream fis = new FileInputStream("D:\\test.jpg");
  6. // 1.2 指定目的地
  7. FileOutputStream fos = new FileOutputStream("test_copy.jpg");
  8. // 2.读写数据
  9. // 2.1 定义数组
  10. byte[] b = new byte[1024];
  11. // 2.2 定义长度
  12. int len;
  13. // 2.3 循环读取
  14. while ((len = fis.read(b))!=-1) {
  15. // 2.4 写出数据
  16. fos.write(b, 0 , len);
  17. }
  18. // 3.关闭资源
  19. fos.close();
  20. fis.close();
  21. }
  22. }

小贴士: 流的关闭原则:先开后关,后开先关。

  1. /*
  2. 实现对图片的复制操作
  3. */
  4. @Test
  5. public void testFileInputOutputStream() {
  6. FileInputStream fis = null;
  7. FileOutputStream fos = null;
  8. try {
  9. //1.造文件
  10. File srcFile = new File("爱情与友情.jpg");
  11. File destFile = new File("爱情与友情2.jpg");
  12. //2.造流
  13. fis = new FileInputStream(srcFile);
  14. fos = new FileOutputStream(destFile);
  15. //3.复制的过程
  16. byte[] buffer = new byte[5];
  17. int len;
  18. while((len = fis.read(buffer)) != -1){
  19. fos.write(buffer,0,len);
  20. }
  21. } catch (IOException e) {
  22. e.printStackTrace();
  23. } finally {
  24. if(fos != null){
  25. //4.关闭流
  26. try {
  27. fos.close();
  28. } catch (IOException e) {
  29. e.printStackTrace();
  30. }
  31. }
  32. if(fis != null){
  33. try {
  34. fis.close();
  35. } catch (IOException e) {
  36. e.printStackTrace();
  37. }
  38. }
  39. }
  40. }

【注意】
相对路径在IDEA和Eclipse中使用的区别?
IDEA:
如果使用单元测试方法,相对路径基于当前的Module的。
如果使用main()测试,相对路径基于当前Project的。
Eclipse:
单元测试方法还是main(),相对路径都是基于当前Project的。

字符流

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

字符输入流【Reader】

java.io.Reader抽象类是表示用于读取字符流的所有类的超类,可以读取字符信息到内存中。它定义了字符输入流的基本共性功能方法。

  • public void close() :关闭此流并释放与此流相关联的任何系统资源。
  • public int read(): 从输入流读取一个字符。
  • public int read(char[] cbuf): 从输入流中读取一些字符,并将它们存储到字符数组 cbuf中 。

    FileReader类

    java.io.FileReader `类是读取字符文件的便利类。构造时使用系统默认的字符编码和默认字节缓冲区。

小贴士:

  1. 字符编码:字节与字符的对应规则。Windows系统的中文编码默认是GBK编码表。
    idea中UTF-8
  2. 字节缓冲区:一个字节数组,用来临时存储字节数据。

构造方法

  • FileReader(File file): 创建一个新的 FileReader ,给定要读取的File对象。
  • FileReader(String fileName): 创建一个新的 FileReader ,给定要读取的文件的名称。

当你创建一个流对象时,必须传入一个文件路径。类似于FileInputStream 。

  • 构造举例,代码如下:

    1. public class FileReaderConstructor throws IOException{
    2. public static void main(String[] args) {
    3. // 使用File对象创建流对象
    4. File file = new File("a.txt");
    5. FileReader fr = new FileReader(file);
    6. // 使用文件名称创建流对象
    7. FileReader fr = new FileReader("b.txt");
    8. }
    9. }

    读取字符数据

    读取字符read方法,每次可以读取一个字符的数据,提升为int类型,读取到文件末尾,返回-1,循环读取,代码使用演示:

    1. public class FRRead {
    2. public static void main(String[] args) throws IOException {
    3. // 使用文件名称创建流对象
    4. FileReader fr = new FileReader("read.txt");
    5. // 定义变量,保存数据
    6. int b
    7. // 循环读取
    8. while ((b = fr.read())!=-1) {
    9. System.out.println((char)b);
    10. }
    11. // 关闭资源
    12. fr.close();
    13. }
    14. }
    15. 输出结果:

    小贴士:虽然读取了一个字符,但是会自动提升为int类型。

使用字符数组读取read(char[] cbuf),每次读取b的长度个字符到数组中,返回读取到的有效字符个数,读取到末尾时,返回-1 ,代码使用演示:

  1. public class FRRead {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileReader fr = new FileReader("read.txt");
  5. // 定义变量,保存有效字符个数
  6. int len
  7. // 定义字符数组,作为装字符数据的容器
  8. char[] cbuf = new char[2];
  9. // 循环读取
  10. while ((len = fr.read(cbuf))!=-1) {
  11. System.out.println(new String(cbuf));
  12. }
  13. // 关闭资源
  14. fr.close();
  15. }
  16. }
  17. 输出结果:
  18. 黑马
  19. 程序
  20. 员序

获取有效的字符改进,代码使用演示:

  1. public class FISRead {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileReader fr = new FileReader("read.txt");
  5. // 定义变量,保存有效字符个数
  6. int len
  7. // 定义字符数组,作为装字符数据的容器
  8. char[] cbuf = new char[2];
  9. // 循环读取
  10. while ((len = fr.read(cbuf))!=-1) {
  11. System.out.println(new String(cbuf,0,len));
  12. }
  13. // 关闭资源
  14. fr.close();
  15. }
  16. }
  17. 输出结果:
  18. 黑马
  19. 程序

字符输出流【Writer】

java.io.Writer抽象类是表示用于写出字符流的所有类的超类,将指定的字符信息写出到目的地。它定义了字节输出流的基本共性功能方法。

  • void write(int c) 写入单个字符。
  • void write(char[] cbuf)写入字符数组。
  • abstract void write(char[] cbuf, int off, int len)写入字符数组的某一部分,off数组的开始索引,len写的字符个数。
  • void write(String str)写入字符串。
  • void write(String str, int off, int len) 写入字符串的某一部分,off字符串的开始索引,len写的字符个数。
  • void flush()刷新该流的缓冲。
  • void close() 关闭此流,但要先刷新它。

    FileWriter类

    java.io.FileWriter类是写出字符到文件的便利类。构造时使用系统默认的字符编码和默认字节缓冲区。

    构造方法

  • FileWriter(File file): 创建一个新的 FileWriter,给定要读取的File对象。

  • FileWriter(String fileName): 创建一个新的 FileWriter,给定要读取的文件的名称。

当你创建一个流对象时,必须传入一个文件路径,类似于FileOutputStream。

  • 构造举例,代码如下:

    1. public class FileWriterConstructor {
    2. public static void main(String[] args) throws IOException {
    3. // 使用File对象创建流对象
    4. File file = new File("a.txt");
    5. FileWriter fw = new FileWriter(file);
    6. // 使用文件名称创建流对象
    7. FileWriter fw = new FileWriter("b.txt");
    8. }
    9. }

    基本写出数据

    写出字符write(int b) 方法,每次可以写出一个字符数据,代码使用演示:

    1. public class FWWrite {
    2. public static void main(String[] args) throws IOException {
    3. // 使用文件名称创建流对象
    4. FileWriter fw = new FileWriter("fw.txt");
    5. // 写出数据
    6. fw.write(97); // 写出第1个字符
    7. fw.write('b'); // 写出第2个字符
    8. fw.write('C'); // 写出第3个字符
    9. fw.write(30000); // 写出第4个字符,中文编码表中30000对应一个汉字。
    10. /*
    11. 【注意】关闭资源时,与FileOutputStream不同。
    12. 如果不关闭,数据只是保存到缓冲区,并未保存到文件。
    13. */
    14. // fw.close();
    15. }
    16. }
    17. 输出结果:
    18. abC

    小贴士:

    1. 虽然参数为int类型四个字节,但是只会保留一个字符的信息写出。
    2. 未调用close方法,数据只是保存到了缓冲区,并未写出到文件中。

关闭和刷新

因为内置缓冲区的原因,如果不关闭输出流,无法写出字符到文件中。但是关闭的流对象,是无法继续写出数据的。如果我们既想写出数据,又想继续使用流,就需要flush 方法了。

  • flush :刷新缓冲区,流对象可以继续使用。
  • close:先刷新缓冲区,然后通知系统释放资源。流对象不可以再被使用了。

代码使用演示:

  1. public class FWWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileWriter fw = new FileWriter("fw.txt");
  5. // 写出数据,通过flush
  6. fw.write('刷'); // 写出第1个字符
  7. fw.flush();
  8. fw.write('新'); // 继续写出第2个字符,写出成功
  9. fw.flush();
  10. // 写出数据,通过close
  11. fw.write('关'); // 写出第1个字符
  12. fw.close();
  13. fw.write('闭'); // 继续写出第2个字符,【报错】java.io.IOException: Stream closed
  14. fw.close();
  15. }
  16. }

小贴士:即便是flush方法写出了数据,操作的最后还是要调用close方法,释放系统资源。

写出其他数据

写出字符数组write(char[] cbuf) 和 write(char[] cbuf, int off, int len) ,每次可以写出字符数组中的数据,用法类似FileOutputStream,代码使用演示:

  1. public class FWWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileWriter fw = new FileWriter("fw.txt");
  5. // 字符串转换为字节数组
  6. char[] chars = "黑马程序员".toCharArray();
  7. // 写出字符数组
  8. fw.write(chars); // 黑马程序员
  9. // 写出从索引2开始,2个字节。索引2是'程',两个字节,也就是'程序'。
  10. fw.write(b,2,2); // 程序
  11. // 关闭资源
  12. fos.close();
  13. }
  14. }

写出字符串write(String str) 和 write(String str, int off, int len),每次可以写出字符串中的数据,更为方便,代码使用演示:

  1. public class FWWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象
  4. FileWriter fw = new FileWriter("fw.txt");
  5. // 字符串
  6. String msg = "黑马程序员";
  7. // 写出字符数组
  8. fw.write(msg); //黑马程序员
  9. // 写出从索引2开始,2个字节。索引2是'程',两个字节,也就是'程序'。
  10. fw.write(msg,2,2); // 程序
  11. // 关闭资源
  12. fos.close();
  13. }
  14. }

续写和换行:操作类似于FileOutputStream。

  1. public class FWWrite {
  2. public static void main(String[] args) throws IOException {
  3. // 使用文件名称创建流对象,可以续写数据
  4. FileWriter fw = new FileWriter("fw.txt"true);
  5. // 写出字符串
  6. fw.write("黑马");
  7. // 写出换行
  8. fw.write("\r\n");
  9. // 写出字符串
  10. fw.write("程序员");
  11. // 关闭资源
  12. fw.close();
  13. }
  14. }
  15. 输出结果:
  16. 黑马
  17. 程序员

小贴士:字符流,只能操作文本文件,不能操作图片,视频等非文本文件。 当我们单纯读或者写文本文件时 使用字符流 其他情况使用字节流

IO异常的处理

之前的入门练习,我们一直把异常抛出,而实际开发中并不能这样处理,建议使用try…catch…finally 代码块,处理异常部分,代码使用演示:

  1. public class HandleException1 {
  2. public static void main(String[] args) {
  3. // 声明变量
  4. FileWriter fw = null;
  5. try {
  6. //创建流对象
  7. fw = new FileWriter("fw.txt");
  8. // 写出数据
  9. fw.write("黑马程序员"); //黑马程序员
  10. } catch (IOException e) {
  11. e.printStackTrace();
  12. } finally {
  13. try {
  14. if (fw != null) {
  15. fw.close();
  16. }
  17. } catch (IOException e) {
  18. e.printStackTrace();
  19. }
  20. }
  21. }
  22. }

JDK7的处理(扩展知识点了解内容)

还可以使用JDK7优化后的try-with-resource 语句,该语句确保了每个资源在语句结束时关闭。所谓的资源(resource)是指在程序完成后,必须关闭的对象。
格式:

  1. try (创建流对象语句,如果多个,使用';'隔开) {
  2. // 读写数据
  3. } catch (IOException e) {
  4. e.printStackTrace();
  5. }

代码使用演示:

  1. public class HandleException2 {
  2. public static void main(String[] args) {
  3. // 创建流对象
  4. try ( FileWriter fw = new FileWriter("fw.txt"); ) {
  5. // 写出数据
  6. fw.write("黑马程序员"); //黑马程序员
  7. } catch (IOException e) {
  8. e.printStackTrace();
  9. }
  10. }
  11. }

JDK9的改进(扩展知识点了解内容)

JDK9中try-with-resource的改进,对于引入对象的方式,支持的更加简洁。被引入的对象,同样可以自动关闭,无需手动close,我们来了解一下格式。
改进前格式:

  1. // 被final修饰的对象
  2. final Resource resource1 = new Resource("resource1");
  3. // 普通对象
  4. Resource resource2 = new Resource("resource2");
  5. // 引入方式:创建新的变量保存
  6. try (Resource r1 = resource1;
  7. Resource r2 = resource2) {
  8. // 使用对象
  9. }

改进后格式:

  1. // 被final修饰的对象
  2. final Resource resource1 = new Resource("resource1");
  3. // 普通对象
  4. Resource resource2 = new Resource("resource2");
  5. // 引入方式:直接引入
  6. try (resource1; resource2) {
  7. // 使用对象
  8. }

改进后,代码使用演示:

  1. public class TryDemo {
  2. public static void main(String[] args) throws IOException {
  3. // 创建流对象
  4. final FileReader fr = new FileReader("in.txt");
  5. FileWriter fw = new FileWriter("out.txt");
  6. // 引入到try中
  7. try (fr; fw) {
  8. // 定义变量
  9. int b;
  10. // 读取数据
  11. while ((b = fr.read())!=-1) {
  12. // 写出数据
  13. fw.write(b);
  14. }
  15. } catch (IOException e) {
  16. e.printStackTrace();
  17. }
  18. }
  19. }

Properties属性集

概述

java.util.Properties 继承于Hashtable ,来表示一个持久的属性集。它使用键值结构存储数据,每个键及其对应值都是一个字符串。该类也被许多Java类使用,比如获取系统属性时,System.getProperties 方法就是返回一个Properties对象。

Properties类

构造方法

public Properties() :创建一个空的属性列表。

基本的存储方法

  • public Object setProperty(String key, String value) : 保存一对属性。
  • public String getProperty(String key) :使用此属性列表中指定的键搜索属性值。
  • public Set<String> stringPropertyNames() :所有键的名称的集合。

    1. public class ProDemo {
    2. public static void main(String[] args) throws FileNotFoundException {
    3. // 创建属性集对象
    4. Properties properties = new Properties();
    5. // 添加键值对元素
    6. properties.setProperty("filename", "a.txt");
    7. properties.setProperty("length", "209385038");
    8. properties.setProperty("location", "D:\\a.txt");
    9. // 打印属性集对象
    10. System.out.println(properties);
    11. // 通过键,获取属性值
    12. System.out.println(properties.getProperty("filename"));
    13. System.out.println(properties.getProperty("length"));
    14. System.out.println(properties.getProperty("location"));
    15. // 遍历属性集,获取所有键的集合
    16. Set<String> strings = properties.stringPropertyNames();
    17. // 打印键值对
    18. for (String key : strings ) {
    19. System.out.println(key+" -- "+properties.getProperty(key));
    20. }
    21. }
    22. }
    23. 输出结果:
    24. {filename=a.txt, length=209385038, location=D:\a.txt}
    25. a.txt
    26. 209385038
    27. D:\a.txt
    28. filename -- a.txt
    29. length -- 209385038
    30. location -- D:\a.txt

    与流相关的方法

  • public void load(InputStream inStream): 从字节输入流中读取键值对。

参数中使用了字节输入流,通过流对象,可以关联到某文件上,这样就能够加载文本中的数据了。文本数据格式:

  1. filename=a.txt
  2. length=209385038
  3. location=D:\a.txt

加载代码演示:

  1. public class ProDemo2 {
  2. public static void main(String[] args) throws FileNotFoundException {
  3. // 创建属性集对象
  4. Properties pro = new Properties();
  5. // 加载文本中信息到属性集
  6. pro.load(new FileInputStream("read.txt"));
  7. // 遍历集合并打印
  8. Set<String> strings = pro.stringPropertyNames();
  9. for (String key : strings ) {
  10. System.out.println(key+" -- "+pro.getProperty(key));
  11. }
  12. }
  13. }
  14. 输出结果:
  15. filename -- a.txt
  16. length -- 209385038
  17. location -- D:\a.txt

小贴士:文本中的数据,必须是键值对形式,可以使用空格、等号、冒号等符号分隔。

缓冲流的使用

1.缓冲流涉及到的类:

BufferedInputStream
BufferedOutputStream
BufferedReader
BufferedWriter

2.作用:

作用:提供流的读取、写入的速度
提高读写速度的原因:内部提供了一个缓冲区。默认情况下是8kb
image.png

3.典型代码

3.1 使用BufferedInputStream和BufferedOutputStream:处理非文本文件

  1. //实现文件复制的方法
  2. public void copyFileWithBuffered(String srcPath,String destPath){
  3. BufferedInputStream bis = null;
  4. BufferedOutputStream bos = null;
  5. try {
  6. //1.造文件
  7. File srcFile = new File(srcPath);
  8. File destFile = new File(destPath);
  9. //2.造流
  10. //2.1 造节点流
  11. FileInputStream fis = new FileInputStream((srcFile));
  12. FileOutputStream fos = new FileOutputStream(destFile);
  13. //2.2 造缓冲流
  14. bis = new BufferedInputStream(fis);
  15. bos = new BufferedOutputStream(fos);
  16. //3.复制的细节:读取、写入
  17. byte[] buffer = new byte[1024];
  18. int len;
  19. while((len = bis.read(buffer)) != -1){
  20. bos.write(buffer,0,len);
  21. }
  22. } catch (IOException e) {
  23. e.printStackTrace();
  24. } finally {
  25. //4.资源关闭
  26. //要求:先关闭外层的流,再关闭内层的流
  27. if(bos != null){
  28. try {
  29. bos.close();
  30. } catch (IOException e) {
  31. e.printStackTrace();
  32. }
  33. }
  34. if(bis != null){
  35. try {
  36. bis.close();
  37. } catch (IOException e) {
  38. e.printStackTrace();
  39. }
  40. }
  41. //说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略.
  42. // fos.close();
  43. // fis.close();
  44. }
  45. }

3.2 使用BufferedReader和BufferedWriter:处理文本文件

  1. @Test
  2. public void testBufferedReaderBufferedWriter(){
  3. BufferedReader br = null;
  4. BufferedWriter bw = null;
  5. try {
  6. //创建文件和相应的流
  7. br = new BufferedReader(new FileReader(new File("dbcp.txt")));
  8. bw = new BufferedWriter(new FileWriter(new File("dbcp1.txt")));
  9. //读写操作
  10. //方式一:使用char[]数组
  11. // char[] cbuf = new char[1024];
  12. // int len;
  13. // while((len = br.read(cbuf)) != -1){
  14. // bw.write(cbuf,0,len);
  15. // // bw.flush();
  16. // }
  17. //方式二:使用String
  18. String data;
  19. while((data = br.readLine()) != null){
  20. //方法一:
  21. // bw.write(data + "\n");//data中不包含换行符
  22. //方法二:
  23. bw.write(data);//data中不包含换行符
  24. bw.newLine();//提供换行的操作
  25. }
  26. } catch (IOException e) {
  27. e.printStackTrace();
  28. } finally {
  29. //关闭资源
  30. if(bw != null){
  31. try {
  32. bw.close();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. if(br != null){
  38. try {
  39. br.close();
  40. } catch (IOException e) {
  41. e.printStackTrace();
  42. }
  43. }
  44. }
  45. }

转换流的使用

1.转换流涉及到的类:属于字符流

InputStreamReader:将一个字节的输入流转换为字符的输入流
解码:字节、字节数组 —->字符数组、字符串

OutputStreamWriter:将一个字符的输出流转换为字节的输出流
编码:字符数组、字符串 —-> 字节、字节数组

说明:编码决定了解码的方式

2.作用:提供字节流与字符流之间的转换

3.图示:

image.png

4.典型实现:

  1. @Test
  2. public void test1() throws IOException {
  3. FileInputStream fis = new FileInputStream("dbcp.txt");
  4. // InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集
  5. //参数2指明了字符集,具体使用哪个字符集,取决于文件dbcp.txt保存时使用的字符集
  6. InputStreamReader isr = new InputStreamReader(fis,"UTF-8");//使用系统默认的字符集
  7. char[] cbuf = new char[20];
  8. int len;
  9. while((len = isr.read(cbuf)) != -1){
  10. String str = new String(cbuf,0,len);
  11. System.out.print(str);
  12. }
  13. isr.close();
  14. }
  15. /*
  16. 此时处理异常的话,仍然应该使用try-catch-finally
  17. 综合使用InputStreamReader和OutputStreamWriter
  18. */
  19. @Test
  20. public void test2() throws Exception {
  21. //1.造文件、造流
  22. File file1 = new File("dbcp.txt");
  23. File file2 = new File("dbcp_gbk.txt");
  24. FileInputStream fis = new FileInputStream(file1);
  25. FileOutputStream fos = new FileOutputStream(file2);
  26. InputStreamReader isr = new InputStreamReader(fis,"utf-8");
  27. OutputStreamWriter osw = new OutputStreamWriter(fos,"gbk");
  28. //2.读写过程
  29. char[] cbuf = new char[20];
  30. int len;
  31. while((len = isr.read(cbuf)) != -1){
  32. osw.write(cbuf,0,len);
  33. }
  34. //3.关闭资源
  35. isr.close();
  36. osw.close();
  37. }

5.说明:

文件编码的方式(比如:GBK),决定了解析时使用的字符集(也只能是GBK)。

常见的编码表

ASCII:美国标准信息交换码。
用一个字节的7位可以表示。
ISO8859-1:拉丁码表。欧洲码表
用一个字节的8位表示。
GB2312:中国的中文编码表。最多两个字节编码所有字符
GBK:中国的中文编码表升级,融合了更多的中文文字符号。最多两个字节编码
Unicode:国际标准码,融合了目前人类使用的所字符。为每个字符分配唯一的字符码。所有的文字都用两个字节来表示。
UTF-8:变长的编码方式,可用1-4个字节来表示一个字符。

对后面学习的启示
客户端/浏览器端 <——> 后台(java,GO,Python,Node.js,php) <——> 数据库
要求前前后后使用的字符集都要统一:UTF-8.

其它的流的使用

1. 标准的输入输出流:

System.in:标准的输入流,默认从键盘输入
System.out:标准的输出流,默认从控制台输出
修改默认的输入和输出行为:
System类的setIn(InputStream is) / setOut(PrintStream ps)方式重新指定输入和输出的流。

2. 打印流:

PrintStreamPrintWriter
说明:
提供了一系列重载的print()println()方法,用于多种数据类型的输出
System.out返回的是PrintStream的实例

3. 数据流:

DataInputStreamDataOutputStream
作用:
用于读取或写出基本数据类型的变量或字符串

示例代码:

  1. /*
  2. 练习:将内存中的字符串、基本数据类型的变量写出到文件中。
  3. 注意:处理异常的话,仍然应该使用try-catch-finally.
  4. */
  5. @Test
  6. public void test3() throws IOException {
  7. //1.
  8. DataOutputStream dos = new DataOutputStream(new FileOutputStream("data.txt"));
  9. //2.
  10. dos.writeUTF("刘建辰");
  11. dos.flush();//刷新操作,将内存中的数据写入文件
  12. dos.writeInt(23);
  13. dos.flush();
  14. dos.writeBoolean(true);
  15. dos.flush();
  16. //3.
  17. dos.close();
  18. }
  19. /*
  20. 将文件中存储的基本数据类型变量和字符串读取到内存中,保存在变量中。
  21. 注意点:读取不同类型的数据的顺序要与当初写入文件时,保存的数据的顺序一致!
  22. */
  23. @Test
  24. public void test4() throws IOException {
  25. //1.
  26. DataInputStream dis = new DataInputStream(new FileInputStream("data.txt"));
  27. //2.
  28. String name = dis.readUTF();
  29. int age = dis.readInt();
  30. boolean isMale = dis.readBoolean();
  31. System.out.println("name = " + name);
  32. System.out.println("age = " + age);
  33. System.out.println("isMale = " + isMale);
  34. //3.
  35. dis.close();
  36. }

对象流的使用

1.对象流:

ObjectInputStreamObjectOutputStream

2.作用:

ObjectOutputStream:内存中的对象—->存储中的文件、通过网络传输出去:序列化过程
ObjectInputStream:存储中的文件、通过网络接收过来 —->内存中的对象:反序列化过程

3.对象的序列化机制:

对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种二进制流持久地保存在磁盘
上,或通过网络将这种二进制流传输到另一个网络节点。//当其它程序获取了这种二进制流,就可以恢复成原来的
Java对象

4.序列化代码实现:

  1. @Test
  2. public void testObjectOutputStream(){
  3. ObjectOutputStream oos = null;
  4. try {
  5. //1.
  6. oos = new ObjectOutputStream(new FileOutputStream("object.dat"));
  7. //2.
  8. oos.writeObject(new String("我爱北京天安门"));
  9. oos.flush();//刷新操作
  10. oos.writeObject(new Person("王铭",23));
  11. oos.flush();
  12. oos.writeObject(new Person("张学良",23,1001,new Account(5000)));
  13. oos.flush();
  14. } catch (IOException e) {
  15. e.printStackTrace();
  16. } finally {
  17. if(oos != null){
  18. //3.
  19. try {
  20. oos.close();
  21. } catch (IOException e) {
  22. e.printStackTrace();
  23. }
  24. }
  25. }
  26. }

5.反序列化代码实现:

  1. @Test
  2. public void testObjectInputStream(){
  3. ObjectInputStream ois = null;
  4. try {
  5. ois = new ObjectInputStream(new FileInputStream("object.dat"));
  6. Object obj = ois.readObject();
  7. String str = (String) obj;
  8. Person p = (Person) ois.readObject();
  9. Person p1 = (Person) ois.readObject();
  10. System.out.println(str);
  11. System.out.println(p);
  12. System.out.println(p1);
  13. } catch (IOException e) {
  14. e.printStackTrace();
  15. } catch (ClassNotFoundException e) {
  16. e.printStackTrace();
  17. } finally {
  18. if(ois != null){
  19. try {
  20. ois.close();
  21. } catch (IOException e) {
  22. e.printStackTrace();
  23. }
  24. }
  25. }
  26. }

6.实现序列化的对象所属的类需要满足:

1.需要实现接口:Serializable
2.当前类提供一个全局常量:serialVersionUID
3.除了当前Person类需要实现Serializable接口之外,还必须保证其内部所属性,也必须是可序列化的。(默认情况下,基本数据类型可序列化)
补充:ObjectOutputStreamObjectInputStream不能序列化statictransient修饰的成员变量

RandomAccessFile的使用

1.随机存取文件流:RandomAccessFile

2.使用说明:

1.RandomAccessFile直接继承于java.lang.Object类,实现了DataInputDataOutput接口
2.RandomAccessFile既可以作为一个输入流,又可以作为一个输出流
3.如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建。如果写出到的文件存在,则会对原文件内容进行覆盖。(默认情况下,从头覆盖)
4. 可以通过相关的操作,实现RandomAccessFile“插入”数据的效果。seek(int pos)

3.

典型代码1:

  1. @Test
  2. public void test1() {
  3. RandomAccessFile raf1 = null;
  4. RandomAccessFile raf2 = null;
  5. try {
  6. //1.
  7. raf1 = new RandomAccessFile(new File("爱情与友情.jpg"),"r");
  8. raf2 = new RandomAccessFile(new File("爱情与友情1.jpg"),"rw");
  9. //2.
  10. byte[] buffer = new byte[1024];
  11. int len;
  12. while((len = raf1.read(buffer)) != -1){
  13. raf2.write(buffer,0,len);
  14. }
  15. } catch (IOException e) {
  16. e.printStackTrace();
  17. } finally {
  18. //3.
  19. if(raf1 != null){
  20. try {
  21. raf1.close();
  22. } catch (IOException e) {
  23. e.printStackTrace();
  24. }
  25. }
  26. if(raf2 != null){
  27. try {
  28. raf2.close();
  29. } catch (IOException e) {
  30. e.printStackTrace();
  31. }
  32. }
  33. }
  34. }

典型代码2:

  1. /*
  2. 使用RandomAccessFile实现数据的插入效果
  3. */
  4. @Test
  5. public void test3() throws IOException {
  6. RandomAccessFile raf1 = new RandomAccessFile("hello.txt","rw");
  7. raf1.seek(3);//将指针调到角标为3的位置
  8. //保存指针3后面的所数据到StringBuilder中
  9. StringBuilder builder = new StringBuilder((int) new File("hello.txt").length());
  10. byte[] buffer = new byte[20];
  11. int len;
  12. while((len = raf1.read(buffer)) != -1){
  13. builder.append(new String(buffer,0,len)) ;
  14. }
  15. //调回指针,写入“xyz”
  16. raf1.seek(3);
  17. raf1.write("xyz".getBytes());
  18. //将StringBuilder中的数据写入到文件中
  19. raf1.write(builder.toString().getBytes());
  20. raf1.close();
  21. //思考:将StringBuilder替换为ByteArrayOutputStream
  22. }

Path、Paths、Files的使用

1.NIO的使用说明:

Java NIO (New IO,Non-Blocking IO)是从Java 1.4版本开始引入的一套新的IO API,可以替代标准的Java IO AP。
>NIO与原来的IO同样的作用和目的,但是使用的方式完全不同,NIO支持面向缓冲区的(IO是面向流的)、基于通道的IO操作。
>NIO将以更加高效的方式进行文件的读写操作。
>随着 JDK 7 的发布,Java对NIO进行了极大的扩展,增强了对文件处理和文件系统特性的支持,以至于我们称他们为 NIO.2。

2.Path的使用 —-jdk7提供

2.1Path的说明:

Path替换原有的File类。

2.2如何实例化:

image.png

2.3常用方法:

image.png

3.Files工具类 —-jdk7提供

3.1作用:

操作文件或文件目录的工具类

3.2常用方法:

image.png
image.png