01、File类的使用

1.1、File类的实例化

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

  1. import org.junit.Test;
  2. import java.io.File;
  3. /**
  4. * File类的使用
  5. *
  6. * 1. File类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)
  7. * 2. File类声明在java.io包下
  8. *
  9. */
  10. public class FileTest {
  11. /**
  12. * 1.如何创建file类的实例
  13. * File(String filePath):以filePath为路径创建File对象,可以是绝对路径或者相对路径
  14. * File(String parentPath,String childPath):以parentPath为父路径,childPath为子路径创建File对象。
  15. * File(File parentFile,String childPath):根据一个父File对象和子文件路径创建File对象
  16. * 2.
  17. * 相对路径:相较于某个路径下,指明的路径。
  18. * 绝对路径:包含盘符在内的文件或文件目录的路径
  19. *
  20. * 3.路径分隔符
  21. * windows:\\
  22. * unix:/
  23. * 4.Java程序支持跨平台运行,因此路径分隔符要慎用。
  24. *
  25. * 5.为了解决这个隐患,File类提供了一个常量:
  26. * public static final String separator。
  27. * 根据操作系统,动态的提供分隔符。
  28. *
  29. * File file1= new File("d:\\Work\\info.txt");
  30. * File file2= new File("d:"+ File.separator+ "Work"+ File.separator+ "info.txt");
  31. * File file3= new File("d:/Work");
  32. *
  33. */
  34. @Test
  35. public void test(){
  36. //构造器1:
  37. File file1 = new File("hello.txt");//相对于当前module
  38. File file2 = new File("F:\\java\\Work2\\JavaSenior\\day08\\num.txt");
  39. System.out.println(file1);
  40. System.out.println(file2);
  41. //构造器2:
  42. File file3 = new File("D:\\workspace_idea1","JavaSenior");
  43. System.out.println(file3);
  44. //构造器3:
  45. File file4 = new File(file3,"hi.txt");
  46. System.out.println(file4);
  47. }
  48. }

1.2、File类的常用方法1

  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.util.Date;
  4. /**
  5. * File类的使用
  6. *
  7. * 1. File类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)
  8. * 2. File类声明在java.io包下
  9. */
  10. public class FileTest {
  11. /**
  12. * public String getAbsolutePath():获取绝对路径
  13. * public String getPath() :获取路径
  14. * public String getName() :获取名称
  15. * public String getParent():获取上层文件目录路径。若无,返回null
  16. * public long length() :获取文件长度(即:字节数)。不能获取目录的长度。
  17. * public long lastModified() :获取最后一次的修改时间,毫秒值
  18. *
  19. * 如下的两个方法适用于文件目录:
  20. * public String[] list() :获取指定目录下的所有文件或者文件目录的名称数组
  21. * public File[] listFiles() :获取指定目录下的所有文件或者文件目录的File数组
  22. */
  23. @Test
  24. public void test2(){
  25. File file = new File("Hello.txt");
  26. File file2 = new File("F:\\java\\Work2\\JavaSenior\\day08\\num.txt");
  27. System.out.println(file.getAbsolutePath());
  28. System.out.println(file.getPath());
  29. System.out.println(file.getName());
  30. System.out.println(file.getParent());
  31. System.out.println(file.length());
  32. System.out.println(new Date(file.lastModified()));
  33. System.out.println();
  34. System.out.println(file2.getAbsolutePath());
  35. System.out.println(file2.getPath());
  36. System.out.println(file2.getName());
  37. System.out.println(file2.getParent());
  38. System.out.println(file2.length());
  39. System.out.println(file2.lastModified());
  40. }
  41. @Test
  42. public void test3(){
  43. //文件需存在!!!
  44. File file = new File("F:\\java\\Work2\\JavaSenior");
  45. String[] list = file.list();
  46. for(String s : list){
  47. System.out.println(s);
  48. }
  49. System.out.println();
  50. File[] files = file.listFiles();
  51. for(File f : files){
  52. System.out.println(f);
  53. }
  54. }
  55. /**
  56. * File类的重命名功能
  57. *
  58. * public boolean renameTo(File dest):把文件重命名为指定的文件路径
  59. * 比如:file1.renameTo(file2)为例:
  60. * 要想保证返回true,需要file1在硬盘中是存在的,且file2不能在硬盘中存在。
  61. */
  62. @Test
  63. public void test4(){
  64. File file1 = new File("hello.txt");
  65. File file2 = new File("D:\\book\\num.txt");
  66. boolean renameTo = file2.renameTo(file1);
  67. System.out.println(renameTo);
  68. }
  69. }

1.3、File类的常用方法2

image.png

  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.util.Date;
  5. /**
  6. * File类的使用
  7. *
  8. * 1. File类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)
  9. * 2. File类声明在java.io包下
  10. * 3. File类中涉及到关于文件或文件目录的创建、删除、重命名、修改时间、文件大小等方法,
  11. * 并未涉及到写入或读取文件内容的操作。如果需要读取或写入文件内容,必须使用IO流来完成。
  12. * 4. 后续File类的对象常会作为参数传递到流的构造器中,指明读取或写入的"终点".
  13. */
  14. public class FileTest {
  15. /**
  16. * public boolean isDirectory():判断是否是文件目录
  17. * public boolean isFile() :判断是否是文件
  18. * public boolean exists() :判断是否存在
  19. * public boolean canRead() :判断是否可读
  20. * public boolean canWrite() :判断是否可写
  21. * public boolean isHidden() :判断是否隐藏
  22. */
  23. @Test
  24. public void test5(){
  25. File file1 = new File("hello.txt");
  26. file1 = new File("hello1.txt");
  27. System.out.println(file1.isDirectory());
  28. System.out.println(file1.isFile());
  29. System.out.println(file1.exists());
  30. System.out.println(file1.canRead());
  31. System.out.println(file1.canWrite());
  32. System.out.println(file1.isHidden());
  33. System.out.println();
  34. File file2 = new File("D:\\book");
  35. file2 = new File("D:\\book1");
  36. System.out.println(file2.isDirectory());
  37. System.out.println(file2.isFile());
  38. System.out.println(file2.exists());
  39. System.out.println(file2.canRead());
  40. System.out.println(file2.canWrite());
  41. System.out.println(file2.isHidden());
  42. }
  43. /**
  44. * 创建硬盘中对应的文件或文件目录
  45. * public boolean createNewFile() :创建文件。若文件存在,则不创建,返回false
  46. * public boolean mkdir() :创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
  47. * public boolean mkdirs() :创建文件目录。如果此文件目录存在,就不创建了。如果上层文件目录不存在,一并创建
  48. *
  49. * 删除磁盘中的文件或文件目录
  50. * public boolean delete():删除文件或者文件夹
  51. * 删除注意事项:Java中的删除不走回收站。
  52. */
  53. @Test
  54. public void test6() throws IOException {
  55. File file1 = new File("hi.txt");
  56. if(!file1.exists()){
  57. //文件的创建
  58. file1.createNewFile();
  59. System.out.println("创建成功");
  60. }else{//文件存在
  61. file1.delete();
  62. System.out.println("删除成功");
  63. }
  64. }
  65. @Test
  66. public void test7(){
  67. //文件目录的创建
  68. File file1 = new File("d:\\io\\io1\\io3");
  69. boolean mkdir = file1.mkdir();
  70. if(mkdir){
  71. System.out.println("创建成功1");
  72. }
  73. File file2 = new File("d:\\io\\io1\\io4");
  74. boolean mkdir1 = file2.mkdirs();
  75. if(mkdir1){
  76. System.out.println("创建成功2");
  77. }
  78. //要想删除成功,io4文件目录下不能有子目录或文件
  79. File file3 = new File("D:\\io\\io1\\io4");
  80. file3 = new File("D:\\io\\io1");
  81. System.out.println(file3.delete());
  82. }
  83. }

1.4、课后练习

image.png
1、FileTest类

  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.io.IOException;
  4. /**
  5. * 1. 利用File构造器,new一个文件目录file
  6. * 1)在其中创建多个文件和目录
  7. * 2)编写方法,实现删除file中指定文件的操作
  8. */
  9. public class FileTest {
  10. @Test
  11. public void test() throws IOException {
  12. File file = new File("D:\\io\\io1\\hello.txt");
  13. //创建一个与file同目录下的另外一个文件,文件名为:haha.txt
  14. File destFile = new File(file.getParent(),"haha.txt");
  15. boolean newFile = destFile.createNewFile();
  16. if(newFile){
  17. System.out.println("创建成功!");
  18. }
  19. }
  20. }

2、FindJPGFileTest类

  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.io.FilenameFilter;
  4. /**
  5. * 2.判断指定目录下是否有后缀名为.jpg的文件,如果有,就输出该文件名称
  6. */
  7. public class FindJPGFileTest {
  8. @Test
  9. public void test(){
  10. File srcFile = new File("d:\\code");
  11. String[] fileNames = srcFile.list();
  12. for(String fileName : fileNames){
  13. if(fileName.endsWith(".jpg")){
  14. System.out.println(fileName);
  15. }
  16. }
  17. }
  18. @Test
  19. public void test2(){
  20. File srcFile = new File("d:\\code");
  21. File[] listFiles = srcFile.listFiles();
  22. for(File file : listFiles){
  23. if(file.getName().endsWith(".jpg")){
  24. System.out.println(file.getAbsolutePath());
  25. }
  26. }
  27. }
  28. /**
  29. * File类提供了两个文件过滤器方法
  30. * public String[] list(FilenameFilter filter)
  31. * public File[] listFiles(FileFilter filter)
  32. */
  33. @Test
  34. public void test3(){
  35. File srcFile = new File("d:\\code");
  36. File[] subFiles = srcFile.listFiles(new FilenameFilter() {
  37. @Override
  38. public boolean accept(File dir, String name) {
  39. return name.endsWith(".jpg");
  40. }
  41. });
  42. for(File file : subFiles){
  43. System.out.println(file.getAbsolutePath());
  44. }
  45. }
  46. }

3、ListFilesTest类

  1. import java.io.File;
  2. /**
  3. * 3. 遍历指定目录所有文件名称,包括子文件目录中的文件。
  4. * 拓展1:并计算指定目录占用空间的大小
  5. * 拓展2:删除指定文件目录及其下的所有文件
  6. */
  7. public class ListFilesTest {
  8. public static void main(String[] args) {
  9. // 递归:文件目录
  10. /** 打印出指定目录所有文件名称,包括子文件目录中的文件 */
  11. // 1.创建目录对象
  12. File dir = new File("E:\\teach\\01_javaSE\\_尚硅谷Java编程语言\\3_软件");
  13. // 2.打印目录的子文件
  14. printSubFile(dir);
  15. }
  16. public static void printSubFile(File dir) {
  17. // 打印目录的子文件
  18. File[] subfiles = dir.listFiles();
  19. for (File f : subfiles) {
  20. if (f.isDirectory()) {// 文件目录
  21. printSubFile(f);
  22. } else {// 文件
  23. System.out.println(f.getAbsolutePath());
  24. }
  25. }
  26. }
  27. // 方式二:循环实现
  28. // 列出file目录的下级内容,仅列出一级的话
  29. // 使用File类的String[] list()比较简单
  30. public void listSubFiles(File file) {
  31. if (file.isDirectory()) {
  32. String[] all = file.list();
  33. for (String s : all) {
  34. System.out.println(s);
  35. }
  36. } else {
  37. System.out.println(file + "是文件!");
  38. }
  39. }
  40. // 列出file目录的下级,如果它的下级还是目录,接着列出下级的下级,依次类推
  41. // 建议使用File类的File[] listFiles()
  42. public void listAllSubFiles(File file) {
  43. if (file.isFile()) {
  44. System.out.println(file);
  45. } else {
  46. File[] all = file.listFiles();
  47. // 如果all[i]是文件,直接打印
  48. // 如果all[i]是目录,接着再获取它的下一级
  49. for (File f : all) {
  50. listAllSubFiles(f);// 递归调用:自己调用自己就叫递归
  51. }
  52. }
  53. }
  54. // 拓展1:求指定目录所在空间的大小
  55. // 求任意一个目录的总大小
  56. public long getDirectorySize(File file) {
  57. // file是文件,那么直接返回file.length()
  58. // file是目录,把它的下一级的所有大小加起来就是它的总大小
  59. long size = 0;
  60. if (file.isFile()) {
  61. size += file.length();
  62. } else {
  63. File[] all = file.listFiles();// 获取file的下一级
  64. // 累加all[i]的大小
  65. for (File f : all) {
  66. size += getDirectorySize(f);// f的大小;
  67. }
  68. }
  69. return size;
  70. }
  71. // 拓展2:删除指定的目录
  72. public void deleteDirectory(File file) {
  73. // 如果file是文件,直接delete
  74. // 如果file是目录,先把它的下一级干掉,然后删除自己
  75. if (file.isDirectory()) {
  76. File[] all = file.listFiles();
  77. // 循环删除的是file的下一级
  78. for (File f : all) {// f代表file的每一个下级
  79. deleteDirectory(f);
  80. }
  81. }
  82. // 删除自己
  83. file.delete();
  84. }
  85. }


02、IO流原理及流的分类

2.1、IO流原理

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

image.png

2.2、流的分类

  • 按操作数据单位不同分为:字节流(8 bit),字符流(16 bit)
  • 按数据流的流向不同分为:输入流,输出流
  • 按流的角色的不同分为:节点流,处理流 | 抽象基类 | 字节流 | 字符流 | | —- | —- | —- | | 输入流 | InputStream | Reader | | 输出流 | OutputStream | Writer |
  1. Java的IO流共涉及40多个类,实际上非常规则,都是从如下4个抽象基类派生的。
  2. 由这四个类派生出来的子类名称都是以其父类名作为子类名后缀。

image.png

2.3、IO 流体系

image.png

04、节点流(或文件流)

4.1、FileReader读入数据的基本操作

1、读取文件【四个步骤】

  1. 建立一个流对象,将已存在的一个文件加载进流

    1. FileReaderfr= new FileReader(new File(“Test.txt”));
  2. 创建一个临时存放数据的数组。

    1. char[] ch= new char[1024];
  3. 调用流对象的读取方法将流中的数据读入到数组中。

    1. fr.read(ch);
  4. 关闭资源。

    1. fr.close();
  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.io.FileReader;
  4. import java.io.IOException;
  5. /**
  6. * 一、流的分类:
  7. * 1.操作数据单位:字节流、字符流
  8. * 2.数据的流向:输入流、输出流
  9. * 3.流的角色:节点流、处理流
  10. *
  11. * 二、流的体系结构
  12. * 抽象基类 节点流(或文件流) 缓冲流(处理流的一种)
  13. * InputStream FileInputStream (read(byte[] buffer)) BufferedInputStream (read(byte[] buffer))
  14. * OutputStream FileOutputStream (write(byte[] buffer,0,len) BufferedOutputStream (write(byte[] buffer,0,len) / flush()
  15. * Reader FileReader (read(char[] cbuf)) BufferedReader (read(char[] cbuf) / readLine())
  16. * Writer FileWriter (write(char[] cbuf,0,len) BufferedWriter (write(char[] cbuf,0,len) / flush()
  17. */
  18. public class FileReaderWriterTest {
  19. public static void main(String[] args) {
  20. File file = new File("hello.txt");//相较于当前工程
  21. System.out.println(file.getAbsolutePath());
  22. File file1 = new File("day09\\hello.txt");
  23. System.out.println(file1.getAbsolutePath());
  24. }
  25. /**
  26. * 将day09下的hello.txt文件内容读入程序中,并输出到控制台
  27. *
  28. * 说明点:
  29. * 1. read()的理解:返回读入的一个字符。如果达到文件末尾,返回-1
  30. * 2. 异常的处理:为了保证流资源一定可以执行关闭操作。需要使用try-catch-finally处理
  31. * 3. 读入的文件一定要存在,否则就会报FileNotFoundException。
  32. *
  33. */
  34. @Test
  35. public void test(){
  36. FileReader fr = null;
  37. try {
  38. //实例化File对象,指明要操作的文件
  39. File file = new File("hello.txt");//相较于当前的Module
  40. //2.提供具体的流
  41. fr = new FileReader(file);
  42. //3.数据的读入过程
  43. //read():返回读入的一个字符。如果达到文件末尾,返回-1.
  44. //方式一:
  45. // int data = fr.read();
  46. // while(data != -1){
  47. // System.out.print((char) data);
  48. // data = fr.read();
  49. // }
  50. //方式二:语法上针对于方式一的修改
  51. int data;
  52. while((data = fr.read()) != -1){
  53. System.out.print((char) data);
  54. }
  55. } catch (IOException e) {
  56. e.printStackTrace();
  57. }finally {
  58. //4.流的关闭操作
  59. // try {
  60. // if(fr != null)
  61. // fr.close();
  62. // } catch (IOException e) {
  63. // e.printStackTrace();
  64. // }
  65. //或
  66. if(fr != null){
  67. try {
  68. fr.close();
  69. } catch (IOException e) {
  70. e.printStackTrace();
  71. }
  72. }
  73. }
  74. }
  75. }

4.2、FileReader中使用read(char[] cbuf)读入数据

  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.io.FileReader;
  4. import java.io.IOException;
  5. public class FileReaderWriterTest {
  6. //对read()操作升级:使用read的重载方法
  7. @Test
  8. public void test2(){
  9. FileReader fr = null;
  10. try {
  11. //1.File类的实例化
  12. File file = new File("hello.txt");
  13. //2.FileReader流的实例化
  14. fr = new FileReader(file);
  15. //3.读入的操作
  16. //read(char[] cbuf):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
  17. char[] cbuf = new char[5];
  18. int len;
  19. fr.read(cbuf);
  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. }
  51. }

4.3、FileWriter写出数据的操作

1、写入文件

  1. 创建流对象,建立数据存放文件

    1. FileWriterfw= new FileWriter(new File(“Test.txt”));
  2. 调用流对象的写入方法,将数据写入流

    1. fw.write(“atguigu-songhongkang”);
  3. 关闭流资源,并将流中的数据清空到文件中。

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


4.4、使用FileReader和FileWriter实现文本文件的复制

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


4.5、使用FileInputStream不能读取文本文件的测试

  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.IOException;
  5. /**
  6. * 测试FileInputStream和FileOutputStream的使用
  7. *
  8. * 结论:
  9. * 1. 对于文本文件(.txt,.java,.c,.cpp),使用字符流处理
  10. * 2. 对于非文本文件(.jpg,.mp3,.mp4,.avi,.doc,.ppt,...),使用字节流处理
  11. */
  12. public class FileIOPutTest {
  13. //使用字节流FileInputStream处理文本文件,可能出现乱码。
  14. @Test
  15. public void testFileInputStream(){
  16. FileInputStream fis = null;
  17. try {
  18. //1.造文件
  19. File file = new File("hello.txt");
  20. //2.造流
  21. fis = new FileInputStream(file);
  22. //3.读数据
  23. byte[] buffer = new byte[5];
  24. int len;//记录每次读取的字节的个数
  25. while((len = fis.read(buffer)) != -1){
  26. String str = new String(buffer,0,len);
  27. System.out.print(str);
  28. }
  29. } catch (IOException e) {
  30. e.printStackTrace();
  31. }finally {
  32. if(fis != null) {
  33. //4.关闭资源
  34. try {
  35. fis.close();
  36. } catch (IOException e) {
  37. e.printStackTrace();
  38. }
  39. }
  40. }
  41. }
  42. }


4.7、使用FileInputStream和FileOutputStream复制文件的方法测试

  1. import org.junit.Test;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. public class FileIOPutTest {
  7. //指定路径下文件的复制
  8. public void copyFile(String srcPath,String destPath){
  9. FileInputStream fis = null;
  10. FileOutputStream fos = null;
  11. try {
  12. //
  13. File srcFile = new File(srcPath);
  14. File destFile = new File(destPath);
  15. //
  16. fis = new FileInputStream(srcFile);
  17. fos = new FileOutputStream(destFile);
  18. //复制的过程
  19. byte[] buffer = new byte[1024];
  20. int len;
  21. while((len = fis.read(buffer)) != -1){
  22. fos.write(buffer,0,len);
  23. }
  24. } catch (IOException e) {
  25. e.printStackTrace();
  26. } finally {
  27. if(fos != null){
  28. //
  29. try {
  30. fos.close();
  31. } catch (IOException e) {
  32. e.printStackTrace();
  33. }
  34. }
  35. if(fis != null){
  36. try {
  37. fis.close();
  38. } catch (IOException e) {
  39. e.printStackTrace();
  40. }
  41. }
  42. }
  43. }
  44. @Test
  45. public void testCopyFile(){
  46. long start = System.currentTimeMillis();
  47. // String srcPath = "C:\\Users\\29433\\Desktop\\164.jpg";
  48. // String destPath = "C:\\Users\\29433\\Desktop\\164.jpg";
  49. String srcPath = "hello.txt";
  50. String destPath = "hello3.txt";
  51. copyFile(srcPath,destPath);
  52. long end = System.currentTimeMillis();
  53. System.out.println("复制操作花费的时间为:" + (end - start));//1
  54. }
  55. }


05、缓冲流

  • 为了提高数据读写的速度,Java API提供了带缓冲功能的流类,在使用这些流类时,会创建一个内部缓冲区数组,缺省使用8192个字节(8Kb)的缓冲区。

image.png

  • 缓冲流要“套接”在相应的节点流之上,根据数据操作单位可以把缓冲流分为:
    • BufferedInputStream和BufferedOutputStream
    • BufferedReader和BufferedWriter
  • 当读取数据时,数据按块读入缓冲区,其后的读操作则直接访问缓冲区
  • 当使用BufferedInputStream读取字节文件时,BufferedInputStream会一次性从文件中读取8192个(8Kb),存在缓冲区中,直到缓冲区装满了,才重新从文件中读取下一个8192个字节数组。
  • 向流中写入字节时,不会直接写到文件,先写到缓冲区中直到缓冲区写满,BufferedOutputStream才会把缓冲区中的数据一次性写到文件里。使用方法flush()可以强制将缓冲区的内容全部写入输出流
  • 关闭流的顺序和打开流的顺序相反。只要关闭最外层流即可,关闭最外层流也会相应关闭内层节点流
  • flush()方法的使用:手动将buffer中内容写入文件
  • 如果是带缓冲区的流对象的close()方法,不但会关闭流,还会在关闭流之前刷新缓冲区,关闭后不能再写出。

image.png

5.1、缓冲流(字节型)实现非文本文件的复制

  1. import org.junit.Test;
  2. import java.io.*;
  3. /**
  4. * 处理流之一:缓冲流的使用
  5. *
  6. * 1.缓冲流:
  7. * BufferedInputStream
  8. * BufferedOutputStream
  9. * BufferedReader
  10. * BufferedWriter
  11. */
  12. public class BufferedTest {
  13. /**
  14. * 实现非文本文件的复制
  15. */
  16. @Test
  17. public void BufferedStreamTest(){
  18. BufferedInputStream bis = null;
  19. BufferedOutputStream bos = null;
  20. try {
  21. //1.造文件
  22. File srcFile = new File("爱情与友情.jpg");
  23. File destFile = new File("爱情与友情3.jpg");
  24. //2.造流
  25. //2.1 造节点流
  26. FileInputStream fis = new FileInputStream((srcFile));
  27. FileOutputStream fos = new FileOutputStream(destFile);
  28. //2.2 造缓冲流
  29. bis = new BufferedInputStream(fis);
  30. bos = new BufferedOutputStream(fos);
  31. //3.复制的细节:读取、写入
  32. byte[] buffer = new byte[10];
  33. int len;
  34. while((len = bis.read(buffer)) != -1){
  35. bos.write(buffer,0,len);
  36. // bos.flush();//刷新缓冲区
  37. }
  38. } catch (IOException e) {
  39. e.printStackTrace();
  40. } finally {
  41. //4.资源关闭
  42. //要求:先关闭外层的流,再关闭内层的流
  43. if(bos != null){
  44. try {
  45. bos.close();
  46. } catch (IOException e) {
  47. e.printStackTrace();
  48. }
  49. }
  50. if(bis != null){
  51. try {
  52. bis.close();
  53. } catch (IOException e) {
  54. e.printStackTrace();
  55. }
  56. }
  57. //说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略.
  58. // fos.close();
  59. // fis.close();
  60. }
  61. }
  62. }


5.2、缓冲流与节点流读写速度对比

  1. import org.junit.Test;
  2. import java.io.*;
  3. /**
  4. * 处理流之一:缓冲流的使用
  5. *
  6. * 1.缓冲流:
  7. * BufferedInputStream
  8. * BufferedOutputStream
  9. * BufferedReader
  10. * BufferedWriter
  11. *
  12. * 2.作用:提供流的读取、写入的速度
  13. * 提高读写速度的原因:内部提供了一个缓冲区
  14. *
  15. * 3. 处理流,就是“套接”在已有的流的基础上。
  16. *
  17. */
  18. public class BufferedTest {
  19. //实现文件复制的方法
  20. public void copyFileWithBuffered(String srcPath,String destPath){
  21. BufferedInputStream bis = null;
  22. BufferedOutputStream bos = null;
  23. try {
  24. //1.造文件
  25. File srcFile = new File(srcPath);
  26. File destFile = new File(destPath);
  27. //2.造流
  28. //2.1 造节点流
  29. FileInputStream fis = new FileInputStream((srcFile));
  30. FileOutputStream fos = new FileOutputStream(destFile);
  31. //2.2 造缓冲流
  32. bis = new BufferedInputStream(fis);
  33. bos = new BufferedOutputStream(fos);
  34. //3.复制的细节:读取、写入
  35. byte[] buffer = new byte[1024];
  36. int len;
  37. while((len = bis.read(buffer)) != -1){
  38. bos.write(buffer,0,len);
  39. }
  40. } catch (IOException e) {
  41. e.printStackTrace();
  42. } finally {
  43. //4.资源关闭
  44. //要求:先关闭外层的流,再关闭内层的流
  45. if(bos != null){
  46. try {
  47. bos.close();
  48. } catch (IOException e) {
  49. e.printStackTrace();
  50. }
  51. }
  52. if(bis != null){
  53. try {
  54. bis.close();
  55. } catch (IOException e) {
  56. e.printStackTrace();
  57. }
  58. }
  59. //说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略.
  60. // fos.close();
  61. // fis.close();
  62. }
  63. }
  64. @Test
  65. public void testCopyFileWithBuffered(){
  66. long start = System.currentTimeMillis();
  67. String srcPath = "C:\\Users\\29433\\Desktop\\book.flv";
  68. String destPath = "C:\\Users\\29433\\Desktop\\book1.flv";
  69. copyFileWithBuffered(srcPath,destPath);
  70. long end = System.currentTimeMillis();
  71. System.out.println("复制操作花费的时间为:" + (end - start));//1
  72. }
  73. }

5.3、缓冲流(字符型)实现文本文件的复制

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

5.4、缓冲流课后练习

image.png
1、练习2

  1. package git;
  2. import org.junit.Test;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. public class PicTest {
  7. //图片的加密
  8. @Test
  9. public void test() {
  10. FileInputStream fis = null;
  11. FileOutputStream fos = null;
  12. try {
  13. fis = new FileInputStream("爱情与友情.jpg");
  14. fos = new FileOutputStream("爱情与友情secret.jpg");
  15. byte[] buffer = new byte[20];
  16. int len;
  17. while ((len = fis.read(buffer)) != -1) {
  18. //字节数组进行修改
  19. //错误的
  20. // for(byte b : buffer){
  21. // b = (byte) (b ^ 5);
  22. // }
  23. //正确的
  24. for (int i = 0; i < len; i++) {
  25. buffer[i] = (byte) (buffer[i] ^ 5);
  26. }
  27. fos.write(buffer, 0, len);
  28. }
  29. } catch (IOException e) {
  30. e.printStackTrace();
  31. } finally {
  32. if (fos != null) {
  33. try {
  34. fos.close();
  35. } catch (IOException e) {
  36. e.printStackTrace();
  37. }
  38. }
  39. if (fis != null) {
  40. try {
  41. fis.close();
  42. } catch (IOException e) {
  43. e.printStackTrace();
  44. }
  45. }
  46. }
  47. }
  48. //图片的解密
  49. @Test
  50. public void test2() {
  51. FileInputStream fis = null;
  52. FileOutputStream fos = null;
  53. try {
  54. fis = new FileInputStream("爱情与友情secret.jpg");
  55. fos = new FileOutputStream("爱情与友情4.jpg");
  56. byte[] buffer = new byte[20];
  57. int len;
  58. while ((len = fis.read(buffer)) != -1) {
  59. //字节数组进行修改
  60. //错误的
  61. // for(byte b : buffer){
  62. // b = (byte) (b ^ 5);
  63. // }
  64. //正确的
  65. for (int i = 0; i < len; i++) {
  66. buffer[i] = (byte) (buffer[i] ^ 5);
  67. }
  68. fos.write(buffer, 0, len);
  69. }
  70. } catch (IOException e) {
  71. e.printStackTrace();
  72. } finally {
  73. if (fos != null) {
  74. try {
  75. fos.close();
  76. } catch (IOException e) {
  77. e.printStackTrace();
  78. }
  79. }
  80. if (fis != null) {
  81. try {
  82. fis.close();
  83. } catch (IOException e) {
  84. e.printStackTrace();
  85. }
  86. }
  87. }
  88. }
  89. }

2、练习3

  1. import org.junit.Test;
  2. import java.io.BufferedWriter;
  3. import java.io.FileReader;
  4. import java.io.FileWriter;
  5. import java.io.IOException;
  6. import java.util.HashMap;
  7. import java.util.Map;
  8. import java.util.Set;
  9. /**
  10. * 练习3:获取文本上字符出现的次数,把数据写入文件
  11. *
  12. * 思路:
  13. * 1.遍历文本每一个字符
  14. * 2.字符出现的次数存在Map中
  15. *
  16. * Map<Character,Integer> map = new HashMap<Character,Integer>();
  17. * map.put('a',18);
  18. * map.put('你',2);
  19. *
  20. * 3.把map中的数据写入文件
  21. */
  22. public class WordCount {
  23. /**
  24. * 说明:如果使用单元测试,文件相对路径为当前module
  25. * 如果使用main()测试,文件相对路径为当前工程
  26. */
  27. @Test
  28. public void testWordCount() {
  29. FileReader fr = null;
  30. BufferedWriter bw = null;
  31. try {
  32. //1.创建Map集合
  33. Map<Character, Integer> map = new HashMap<Character, Integer>();
  34. //2.遍历每一个字符,每一个字符出现的次数放到map中
  35. fr = new FileReader("dbcp.txt");
  36. int c = 0;
  37. while ((c = fr.read()) != -1) {
  38. //int 还原 char
  39. char ch = (char) c;
  40. // 判断char是否在map中第一次出现
  41. if (map.get(ch) == null) {
  42. map.put(ch, 1);
  43. } else {
  44. map.put(ch, map.get(ch) + 1);
  45. }
  46. }
  47. //3.把map中数据存在文件count.txt
  48. //3.1 创建Writer
  49. bw = new BufferedWriter(new FileWriter("wordcount.txt"));
  50. //3.2 遍历map,再写入数据
  51. Set<Map.Entry<Character, Integer>> entrySet = map.entrySet();
  52. for (Map.Entry<Character, Integer> entry : entrySet) {
  53. switch (entry.getKey()) {
  54. case ' ':
  55. bw.write("空格=" + entry.getValue());
  56. break;
  57. case '\t'://\t表示tab 键字符
  58. bw.write("tab键=" + entry.getValue());
  59. break;
  60. case '\r'://
  61. bw.write("回车=" + entry.getValue());
  62. break;
  63. case '\n'://
  64. bw.write("换行=" + entry.getValue());
  65. break;
  66. default:
  67. bw.write(entry.getKey() + "=" + entry.getValue());
  68. break;
  69. }
  70. bw.newLine();
  71. }
  72. } catch (IOException e) {
  73. e.printStackTrace();
  74. } finally {
  75. //4.关流
  76. if (fr != null) {
  77. try {
  78. fr.close();
  79. } catch (IOException e) {
  80. e.printStackTrace();
  81. }
  82. }
  83. if (bw != null) {
  84. try {
  85. bw.close();
  86. } catch (IOException e) {
  87. e.printStackTrace();
  88. }
  89. }
  90. }
  91. }
  92. }

06、转换流

6.1、转换流概述与InputStreamReader的使用

  • 转换流提供了在字节流和字符流之间的转换
  • ava API提供了两个转换流:
  • InputStreamReader:将InputStream转换为Reader
    • 实现将字节的输入流按指定字符集转换为字符的输入流。
    • 需要和InputStream“套接”。
    • 构造器
      • public InputStreamReader(InputStreamin)
      • public InputSreamReader(InputStreamin,StringcharsetName)
      • public InputSreamReader(InputStreamin,StringcharsetName)
  • OutputStreamWriter:将Writer转换为OutputStream
    • 实现将字符的输出流按指定字符集转换为字节的输出流。
    • 需要和OutputStream“套接”。
    • 构造器
      • public OutputStreamWriter(OutputStreamout)
      • public OutputSreamWriter(OutputStreamout,StringcharsetName)
  • 字节流中的数据都是字符时,转成字符流操作更高效。
  • 很多时候我们使用转换流来处理文件乱码问题。实现编码和解码的功能。

image.png

  1. import org.junit.Test;
  2. import java.io.FileInputStream;
  3. import java.io.IOException;
  4. import java.io.InputStreamReader;
  5. /**
  6. * 处理流之二:转换流的使用
  7. * 1.转换流:属于字符流
  8. * InputStreamReader:将一个字节的输入流转换为字符的输入流
  9. * OutputStreamWriter:将一个字符的输出流转换为字节的输出流
  10. *
  11. * 2.作用:提供字节流与字符流之间的转换
  12. *
  13. * 3.解码:字节、字节数组 --->字符数组、字符串
  14. * 编码:字符数组、字符串 ---> 字节、字节数组
  15. *
  16. * 4.字符集
  17. */
  18. public class InputStreamReaderTest {
  19. /**
  20. * 此时处理异常的话,仍然应该使用try-catch-finally
  21. * InputStreamReader的使用,实现字节的输入流到字符的输入流的转换
  22. */
  23. @Test
  24. public void test() throws IOException {
  25. FileInputStream fis = new FileInputStream("dbcp.txt");
  26. // InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集
  27. //参数2指明了字符集,具体使用哪个字符集,取决于文件dbcp.txt保存时使用的字符集
  28. InputStreamReader isr = new InputStreamReader(fis,"UTF-8");//使用系统默认的字符集
  29. char[] cbuf = new char[20];
  30. int len;
  31. while((len = isr.read(cbuf)) != -1){
  32. String str = new String(cbuf,0,len);
  33. System.out.print(str);
  34. }
  35. isr.close();
  36. }
  37. }

6.2、转换流实现文件的读入和写出

  1. import org.junit.Test;
  2. import java.io.*;
  3. /**
  4. * 处理流之二:转换流的使用
  5. * 1.转换流:属于字符流
  6. * InputStreamReader:将一个字节的输入流转换为字符的输入流
  7. * OutputStreamWriter:将一个字符的输出流转换为字节的输出流
  8. *
  9. * 2.作用:提供字节流与字符流之间的转换
  10. *
  11. * 3.解码:字节、字节数组 --->字符数组、字符串
  12. * 编码:字符数组、字符串 ---> 字节、字节数组
  13. *
  14. * 4.字符集
  15. */
  16. public class InputStreamReaderTest {
  17. /**
  18. * 此时处理异常的话,仍然应该使用try-catch-finally
  19. * 综合使用InputStreamReader和OutputStreamWriter
  20. */
  21. @Test
  22. public void test2() throws IOException {
  23. //1.造文件、造流
  24. File file1 = new File("dbcp.txt");
  25. File file2 = new File("dbcp_gbk.txt");
  26. FileInputStream fis = new FileInputStream(file1);
  27. FileOutputStream fos = new FileOutputStream(file2);
  28. InputStreamReader isr = new InputStreamReader(fis,"utf-8");
  29. OutputStreamWriter osw = new OutputStreamWriter(fos,"gbk");
  30. //2.读写过程
  31. char[] cbuf = new char[20];
  32. int len;
  33. while((len = isr.read(cbuf)) != -1){
  34. osw.write(cbuf,0,len);
  35. }
  36. //3.关闭资源
  37. isr.close();
  38. osw.close();
  39. }
  40. }

6.3、多种字符编码集的说明

1、编码表的由来
计算机只能识别二进制数据,早期由来是电信号。为了方便应用计算机,让它可以识别各个国家的文字。就将各个国家的文字用数字来表示,并一一对应,形成一张表。这就是编码表。
2、常见的编码表

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

说明:
Unicode不完美,这里就有三个问题,
一个是,我们已经知道,英文字母只用一个字节表示就够了,
第二个问题是如何才能区别Unicode和ASCII?计算机怎么知道两个字节表示一个符号,而不是分别表示两个符号呢?
第三个,如果和GBK等双字节编码方式一样,用最高位是1或0表示两个字节和一个字节,就少了很多值无法用于表示字符,不够表示所有字符。Unicode在很长一段时间内无法推广,直到互联网的出现。
面向传输的众多UTF(UCS Transfer Format)标准出现了,顾名思义,UTF-8就是每次8个位传输数据,而UTF-16就是每次16个位。这是为传输而设计的编码,并使编码无国界,这样就可以显示全世界上所有文化的字符了。
Unicode只是定义了一个庞大的、全球通用的字符集,并为每个字符规定了唯一确定的编号,具体存储成什么样的字节流,取决于字符编码方案。推荐的Unicode编码是UTF-8和UTF-16。
image.png

07、标准输入、输出流

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

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

/**

  • 其他流的使用
  • 1.标准的输入、输出流
  • 2.打印流
  • 3.数据流 */ public class OtherStreamTest {

    /**

    • 1.标准的输入、输出流
    • 1.1
    • System.in:标准的输入流,默认从键盘输入
    • System.out:标准的输出流,默认从控制台输出
    • 1.2
    • System类的setIn(InputStream is) / setOut(PrintStream ps)方式重新指定输入和输出的流。 *
    • 1.3练习:
    • 从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续进行输入操作,
    • 直至当输入“e”或者“exit”时,退出程序。 *
    • 方法一:使用Scanner实现,调用next()返回一个字符串
    • 方法二:使用System.in实现。System.in —-> 转换流 —-> BufferedReader的readLine() */ @Test public void test(){ BufferedReader br = null; try { InputStreamReader isr = new InputStreamReader(System.in); br = new BufferedReader(isr);

      while (true) {

      1. System.out.println("请输入字符串:");
      2. String data = br.readLine();
      3. if ("e".equalsIgnoreCase(data) || "exit".equalsIgnoreCase(data)) {
      4. System.out.println("程序结束");
      5. break;
      6. }
      7. String upperCase = data.toUpperCase();
      8. System.out.println(upperCase);

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

      1. try {
      2. br.close();
      3. } catch (IOException e) {
      4. e.printStackTrace();
      5. }

      } } } }

  1. <a name="X9EbA"></a>
  2. ## 08、打印流
  3. - 实现将基本数据类型的数据格式转化为字符串输出
  4. - 打印流:PrintStream和PrintWriter
  5. - 提供了一系列重载的print()和println()方法,用于多种数据类型的输出
  6. - PrintStream和PrintWriter的输出不会抛出IOException异常
  7. - PrintStream和PrintWriter有自动flush功能
  8. - PrintStream 打印的所有字符都使用平台的默认字符编码转换为字节。在需要写入字符而不是写入字节的情况下,应该使用PrintWriter 类。
  9. - System.out返回的是PrintStream的实例
  10. ```java
  11. import org.junit.Test;
  12. import java.io.*;
  13. public class OtherStreamTest {
  14. /**
  15. * 2. 打印流:PrintStream 和PrintWriter
  16. * 2.1 提供了一系列重载的print() 和 println()
  17. * 2.2 练习:
  18. */
  19. @Test
  20. public void test2(){
  21. PrintStream ps = null;
  22. try {
  23. FileOutputStream fos = new FileOutputStream(new File("D:\\IO\\text.txt"));
  24. // 创建打印输出流,设置为自动刷新模式(写入换行符或字节 '\n' 时都会刷新输出缓冲区)
  25. ps = new PrintStream(fos, true);
  26. if (ps != null) {// 把标准输出流(控制台输出)改成文件
  27. System.setOut(ps);
  28. }
  29. for (int i = 0; i <= 255; i++) { // 输出ASCII字符
  30. System.out.print((char) i);
  31. if (i % 50 == 0) { // 每50个数据一行
  32. System.out.println(); // 换行
  33. }
  34. }
  35. } catch (FileNotFoundException e) {
  36. e.printStackTrace();
  37. } finally {
  38. if (ps != null) {
  39. ps.close();
  40. }
  41. }
  42. }
  43. }

09、数据流

  • 为了方便地操作Java语言的基本数据类型和String的数据,可以使用数据流。
  • 数据流有两个类:(用于读取和写出基本数据类型、String类的数据)
    • DataInputStream和DataOutputStream
    • 分别“套接”在InputStream和OutputStream子类的流上
  • DataInputStream中的方法

    1. boolean readBoolean() byte readByte()
    2. char readChar() float readFloat()
    3. double readDouble() short readShort()
    4. long readLong() int readInt()
    5. String readUTF() void readFully(byte[s] b)
  • DataOutputStream中的方法

    • 将上述的方法的read改为相应的write即可。 ```java import org.junit.Test; import java.io.*;

public class OtherStreamTest {
/**

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

}

  1. <a name="ydqYN"></a>
  2. ## 10、对象流
  3. <a name="pGYXQ"></a>
  4. ### 10.1、对象序列化机制的理解
  5. - ObjectInputStream和OjbectOutputSteam
  6. - 用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。
  7. - 序列化:用ObjectOutputStream类保存基本类型数据或对象的机制
  8. - 反序列化:用ObjectInputStream类读取基本类型数据或对象的机制
  9. - ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量
  10. - 对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。//当其它程序获取了这种二进制流,就可以恢复成原来的Java对象
  11. - 序列化的好处在于可将任何实现了Serializable接口的对象转化为字节数据,使其在保存和传输时可被还原
  12. - 序列化是RMI(Remote Method Invoke –远程方法调用)过程的参数和返回值都必须实现的机制,而RMI 是JavaEE的基础。因此序列化机制是JavaEE平台的基础
  13. - 如果需要让某个对象支持序列化机制,则必须让对象所属的类及其属性是可序列化的,为了让某个类是可序列化的,该类必须实现如下两个接口之一。否则,会抛出NotSerializableException异常
  14. - Serializable
  15. - Externalizable
  16. <a name="zozR2"></a>
  17. ### <br />10.2、对象流序列化与反序列化字符串操作
  18. ```java
  19. import org.junit.Test;
  20. import java.io.*;
  21. /**
  22. * 对象流的使用
  23. * 1.ObjectInputStream 和 ObjectOutputStream
  24. * 2.作用:用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。
  25. */
  26. public class ObjectTest {
  27. /**
  28. * 序列化过程:将内存中的java对象保存到磁盘中或通过网络传输出去
  29. * 使用ObjectOutputStream实现
  30. */
  31. @Test
  32. public void test(){
  33. ObjectOutputStream oos = null;
  34. try {
  35. //创造流
  36. oos = new ObjectOutputStream(new FileOutputStream("object.dat"));
  37. //制造对象
  38. oos.writeObject(new String("秦始皇陵欢迎你"));
  39. //刷新操作
  40. oos.flush();
  41. } catch (IOException e) {
  42. e.printStackTrace();
  43. } finally {
  44. if(oos != null){
  45. //3.关闭流
  46. try {
  47. oos.close();
  48. } catch (IOException e) {
  49. e.printStackTrace();
  50. }
  51. }
  52. }
  53. }
  54. /**
  55. * 反序列化:将磁盘文件中的对象还原为内存中的一个java对象
  56. * 使用ObjectInputStream来实现
  57. */
  58. @Test
  59. public void test2(){
  60. ObjectInputStream ois = null;
  61. try {
  62. ois = new ObjectInputStream(new FileInputStream("object.dat"));
  63. Object obj = ois.readObject();
  64. String str = (String) obj;
  65. System.out.println(str);
  66. } catch (IOException e) {
  67. e.printStackTrace();
  68. } catch (ClassNotFoundException e) {
  69. e.printStackTrace();
  70. } finally {
  71. if(ois != null){
  72. try {
  73. ois.close();
  74. } catch (IOException e) {
  75. e.printStackTrace();
  76. }
  77. }
  78. }
  79. }
  80. }

10.3、自定义类实现序列化与反序列化操作

  • 若某个类实现了Serializable接口,该类的对象就是可序列化的:
    • 创建一个ObjectOutputStream
    • 调用ObjectOutputStream对象的writeObject(对象) 方法输出可序列化对象
    • 调用ObjectOutputStream对象的writeObject(对象) 方法输出可序列化对象
  • 反序列化
    • 创建一个ObjectInputStream对象调用readObject() 方法读取流中的对象
  • 强调:如果某个类的属性不是基本数据类型或String 类型,而是另一个引用类型,那么这个引用类型必须是可序列化的,否则拥有该类型的Field 的类也不能序列化

1、Person类

  1. import java.io.Serializable;
  2. /**
  3. * Person需要满足如下的要求,方可序列化
  4. * 1.需要实现接口:Serializable
  5. */
  6. public class Person implements Serializable {
  7. public static final long serialVersionUID = 475463534532L;
  8. private String name;
  9. private int age;
  10. public Person() {
  11. }
  12. public Person(String name, int age) {
  13. this.name = name;
  14. this.age = age;
  15. }
  16. @Override
  17. public String toString() {
  18. return "Person{" +
  19. "name='" + name + '\'' +
  20. ", age=" + age +
  21. '}';
  22. }
  23. public String getName() {
  24. return name;
  25. }
  26. public void setName(String name) {
  27. this.name = name;
  28. }
  29. public int getAge() {
  30. return age;
  31. }
  32. public void setAge(int age) {
  33. this.age = age;
  34. }
  35. }

2、测试类

  1. import org.junit.Test;
  2. import java.io.*;
  3. /**
  4. * 对象流的使用
  5. * 1.ObjectInputStream 和 ObjectOutputStream
  6. * 2.作用:用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。
  7. *
  8. * 3.要想一个java对象是可序列化的,需要满足相应的要求。见Person.java
  9. *
  10. * 4.序列化机制:
  11. * 对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种
  12. * 二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。
  13. * 当其它程序获取了这种二进制流,就可以恢复成原来的Java对象。
  14. *
  15. */
  16. public class ObjectTest {
  17. /**
  18. * 序列化过程:将内存中的java对象保存到磁盘中或通过网络传输出去
  19. * 使用ObjectOutputStream实现
  20. */
  21. @Test
  22. public void test(){
  23. ObjectOutputStream oos = null;
  24. try {
  25. //创造流
  26. oos = new ObjectOutputStream(new FileOutputStream("object.dat"));
  27. //制造对象
  28. oos.writeObject(new String("秦始皇陵欢迎你"));
  29. //刷新操作
  30. oos.flush();
  31. oos.writeObject(new Person("李时珍",65));
  32. oos.flush();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. } finally {
  36. if(oos != null){
  37. //3.关闭流
  38. try {
  39. oos.close();
  40. } catch (IOException e) {
  41. e.printStackTrace();
  42. }
  43. }
  44. }
  45. }
  46. /**
  47. * 反序列化:将磁盘文件中的对象还原为内存中的一个java对象
  48. * 使用ObjectInputStream来实现
  49. */
  50. @Test
  51. public void test2(){
  52. ObjectInputStream ois = null;
  53. try {
  54. ois = new ObjectInputStream(new FileInputStream("object.dat"));
  55. Object obj = ois.readObject();
  56. String str = (String) obj;
  57. Person p = (Person) ois.readObject();
  58. System.out.println(str);
  59. System.out.println(p);
  60. } catch (IOException e) {
  61. e.printStackTrace();
  62. } catch (ClassNotFoundException e) {
  63. e.printStackTrace();
  64. } finally {
  65. if(ois != null){
  66. try {
  67. ois.close();
  68. } catch (IOException e) {
  69. e.printStackTrace();
  70. }
  71. }
  72. }
  73. }
  74. }

10.4、serialVersionUID的理解

  • 凡是实现Serializable接口的类都有一个表示序列化版本标识符的静态变量:
    • private static final long serialVersionUID;
    • serialVersionUID用来表明类的不同版本间的兼容性。简言之,其目的是以序列化对象进行版本控制,有关各版本反序列化时是否兼容。
    • 如果类没有显示定义这个静态常量,它的值是Java运行时环境根据类的内部细节自动生成的。若类的实例变量做了修改,serialVersionUID可能发生变化。故建议,显式声明。
  • 简单来说,Java的序列化机制是通过在运行时判断类的serialVersionUID来验证版本一致性的。在进行反序列化时,JVM会把传来的字节流中的serialVersionUID与本地相应实体类的serialVersionUID进行比较,如果相同就认为是一致的,可以进行反序列化,否则就会出现序列化版本不一致的异常。(InvalidCastException)


1、Person类

  1. import java.io.Serializable;
  2. /**
  3. * Person需要满足如下的要求,方可序列化
  4. * 1.需要实现接口:Serializable
  5. * 2.当前类提供一个全局常量:serialVersionUID
  6. * 3.除了当前Person类需要实现Serializable接口之外,还必须保证其内部所有属性
  7. * 也必须是可序列化的。(默认情况下,基本数据类型可序列化)
  8. *
  9. *
  10. * 补充:ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量
  11. */
  12. public class Person implements Serializable {
  13. public static final long serialVersionUID = 475463534532L;
  14. private String name;
  15. private int age;
  16. private int id;
  17. public Person() {
  18. }
  19. public Person(String name, int age, int id) {
  20. this.name = name;
  21. this.age = age;
  22. this.id = id;
  23. }
  24. @Override
  25. public String toString() {
  26. return "Person{" +
  27. "name='" + name + '\'' +
  28. ", age=" + age +
  29. ", id=" + id +
  30. '}';
  31. }
  32. public int getId() {
  33. return id;
  34. }
  35. public void setId(int id) {
  36. this.id = id;
  37. }
  38. public String getName() {
  39. return name;
  40. }
  41. public void setName(String name) {
  42. this.name = name;
  43. }
  44. public int getAge() {
  45. return age;
  46. }
  47. public void setAge(int age) {
  48. this.age = age;
  49. }
  50. }

2、测试类

  1. import org.junit.Test;
  2. import java.io.*;
  3. /**
  4. * 对象流的使用
  5. * 1.ObjectInputStream 和 ObjectOutputStream
  6. * 2.作用:用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。
  7. *
  8. * 3.要想一个java对象是可序列化的,需要满足相应的要求。见Person.java
  9. *
  10. * 4.序列化机制:
  11. * 对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种
  12. * 二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。
  13. * 当其它程序获取了这种二进制流,就可以恢复成原来的Java对象。
  14. *
  15. */
  16. public class ObjectTest {
  17. /**
  18. * 序列化过程:将内存中的java对象保存到磁盘中或通过网络传输出去
  19. * 使用ObjectOutputStream实现
  20. */
  21. @Test
  22. public void test(){
  23. ObjectOutputStream oos = null;
  24. try {
  25. //创造流
  26. oos = new ObjectOutputStream(new FileOutputStream("object.dat"));
  27. //制造对象
  28. oos.writeObject(new String("秦始皇陵欢迎你"));
  29. //刷新操作
  30. oos.flush();
  31. oos.writeObject(new Person("李时珍",65,0));
  32. oos.flush();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. } finally {
  36. if(oos != null){
  37. //3.关闭流
  38. try {
  39. oos.close();
  40. } catch (IOException e) {
  41. e.printStackTrace();
  42. }
  43. }
  44. }
  45. }
  46. /**
  47. * 反序列化:将磁盘文件中的对象还原为内存中的一个java对象
  48. * 使用ObjectInputStream来实现
  49. */
  50. @Test
  51. public void test2(){
  52. ObjectInputStream ois = null;
  53. try {
  54. ois = new ObjectInputStream(new FileInputStream("object.dat"));
  55. Object obj = ois.readObject();
  56. String str = (String) obj;
  57. Person p = (Person) ois.readObject();
  58. System.out.println(str);
  59. System.out.println(p);
  60. } catch (IOException e) {
  61. e.printStackTrace();
  62. } catch (ClassNotFoundException e) {
  63. e.printStackTrace();
  64. } finally {
  65. if(ois != null){
  66. try {
  67. ois.close();
  68. } catch (IOException e) {
  69. e.printStackTrace();
  70. }
  71. }
  72. }
  73. }
  74. }

10.7、自定义类可序列化的其它要求

1、Person类

  1. import java.io.Serializable;
  2. /**
  3. * Person需要满足如下的要求,方可序列化
  4. * 1.需要实现接口:Serializable
  5. * 2.当前类提供一个全局常量:serialVersionUID
  6. * 3.除了当前Person类需要实现Serializable接口之外,还必须保证其内部所有属性
  7. * 也必须是可序列化的。(默认情况下,基本数据类型可序列化)
  8. *
  9. *
  10. * 补充:ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量
  11. *
  12. */
  13. public class Person implements Serializable{
  14. public static final long serialVersionUID = 475463534532L;
  15. private String name;
  16. private int age;
  17. private int id;
  18. private Account acct;
  19. public Person(String name, int age, int id) {
  20. this.name = name;
  21. this.age = age;
  22. this.id = id;
  23. }
  24. public Person(String name, int age, int id, Account acct) {
  25. this.name = name;
  26. this.age = age;
  27. this.id = id;
  28. this.acct = acct;
  29. }
  30. @Override
  31. public String toString() {
  32. return "Person{" +
  33. "name='" + name + '\'' +
  34. ", age=" + age +
  35. ", id=" + id +
  36. ", acct=" + acct +
  37. '}';
  38. }
  39. public int getId() {
  40. return id;
  41. }
  42. public void setId(int id) {
  43. this.id = id;
  44. }
  45. public String getName() {
  46. return name;
  47. }
  48. public void setName(String name) {
  49. this.name = name;
  50. }
  51. public int getAge() {
  52. return age;
  53. }
  54. public void setAge(int age) {
  55. this.age = age;
  56. }
  57. public Person(String name, int age) {
  58. this.name = name;
  59. this.age = age;
  60. }
  61. public Person() {
  62. }
  63. }
  64. class Account implements Serializable{
  65. public static final long serialVersionUID = 4754534532L;
  66. private double balance;
  67. @Override
  68. public String toString() {
  69. return "Account{" +
  70. "balance=" + balance +
  71. '}';
  72. }
  73. public double getBalance() {
  74. return balance;
  75. }
  76. public void setBalance(double balance) {
  77. this.balance = balance;
  78. }
  79. public Account(double balance) {
  80. this.balance = balance;
  81. }
  82. }

2、测试类

  1. import org.junit.Test;
  2. import java.io.*;
  3. /**
  4. * 对象流的使用
  5. * 1.ObjectInputStream 和 ObjectOutputStream
  6. * 2.作用:用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。
  7. *
  8. * 3.要想一个java对象是可序列化的,需要满足相应的要求。见Person.java
  9. *
  10. * 4.序列化机制:
  11. * 对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种
  12. * 二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。
  13. * 当其它程序获取了这种二进制流,就可以恢复成原来的Java对象。
  14. */
  15. public class ObjectTest {
  16. /**
  17. * 序列化过程:将内存中的java对象保存到磁盘中或通过网络传输出去
  18. * 使用ObjectOutputStream实现
  19. */
  20. @Test
  21. public void test(){
  22. ObjectOutputStream oos = null;
  23. try {
  24. //创造流
  25. oos = new ObjectOutputStream(new FileOutputStream("object.dat"));
  26. //制造对象
  27. oos.writeObject(new String("秦始皇陵欢迎你"));
  28. //刷新操作
  29. oos.flush();
  30. oos.writeObject(new Person("李时珍",65));
  31. oos.flush();
  32. oos.writeObject(new Person("张学良",23,1001,new Account(5000)));
  33. oos.flush();
  34. } catch (IOException e) {
  35. e.printStackTrace();
  36. } finally {
  37. if(oos != null){
  38. //3.关闭流
  39. try {
  40. oos.close();
  41. } catch (IOException e) {
  42. e.printStackTrace();
  43. }
  44. }
  45. }
  46. }
  47. /**
  48. * 反序列化:将磁盘文件中的对象还原为内存中的一个java对象
  49. * 使用ObjectInputStream来实现
  50. */
  51. @Test
  52. public void test2(){
  53. ObjectInputStream ois = null;
  54. try {
  55. ois = new ObjectInputStream(new FileInputStream("object.dat"));
  56. Object obj = ois.readObject();
  57. String str = (String) obj;
  58. Person p = (Person) ois.readObject();
  59. System.out.println(str);
  60. System.out.println(p);
  61. } catch (IOException e) {
  62. e.printStackTrace();
  63. } catch (ClassNotFoundException e) {
  64. e.printStackTrace();
  65. } finally {
  66. if(ois != null){
  67. try {
  68. ois.close();
  69. } catch (IOException e) {
  70. e.printStackTrace();
  71. }
  72. }
  73. }
  74. }
  75. }

11、随机存取文件流

  • RandomAccessFile 声明在java.io包下,但直接继承于java.lang.Object类。并且它实现了DataInput、DataOutput这两个接口,也就意味着这个类既可以读也可以写
  • RandomAccessFile 类支持“随机访问” 的方式,程序可以直接跳到文件的任意地方来读、写文件
    • 支持只访问文件的部分内容
    • 可以向已存在的文件后追加内容
  • RandomAccessFile 对象包含一个记录指针,用以标示当前读写处的位置。RandomAccessFile类对象可以自由移动记录指针:
    • long getFilePointer():获取文件记录指针的当前位置
    • void seek(long pos):将文件记录指针定位到pos位置
  • 构造器
    • public RandomAccessFile(Filefile, Stringmode)
    • public RandomAccessFile(Stringname, Stringmode)
  • 创建RandomAccessFile类实例需要指定一个mode 参数,该参数指定RandomAccessFile的访问模式:
    • r: 以只读方式打开
    • rw:打开以便读取和写入
    • rwd:打开以便读取和写入;同步文件内容的更新
    • rws:打开以便读取和写入;同步文件内容和元数据的更新
  • 如果模式为只读r。则不会创建文件,而是会去读取一个已经存在的文件,如果读取的文件不存在则会出现异常。如果模式为rw读写。如果文件不存在则会去创建文件,如果存在则不会创建。

    11.1、RandomAccessFile实现数据的读写操作

    ```java import org.junit.Test;

import java.io.File; import java.io.IOException; import java.io.RandomAccessFile;

/**

  • RandomAccessFile的使用
  • 1.RandomAccessFile直接继承于java.lang.Object类,实现了DataInput和DataOutput接口
  • 2.RandomAccessFile既可以作为一个输入流,又可以作为一个输出流
  • 3.如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建。
  • 如果写出到的文件存在,则会对原有文件内容进行覆盖。(默认情况下,从头覆盖) */ public class RandomAccessFileTest {

    @Test public void test(){

    RandomAccessFile raf1 = null; RandomAccessFile raf2 = null; try {

    1. raf1 = new RandomAccessFile(new File("爱情与友情.jpg"),"r");
    2. raf2 = new RandomAccessFile(new File("爱情与友情1.jpg"),"rw");
    3. byte[] buffer = new byte[1024];
    4. int len;
    5. while((len = raf1.read(buffer)) != -1){
    6. raf2.write(buffer,0,len);
    7. }

    } catch (IOException e) {

    1. e.printStackTrace();

    } finally {

    1. if(raf1 != null){
    2. try {
    3. raf1.close();
    4. } catch (IOException e) {
    5. e.printStackTrace();
    6. }
    7. }
    8. if(raf2 != null){
    9. try {
    10. raf2.close();
    11. } catch (IOException e) {
    12. e.printStackTrace();
    13. }
    14. }

    }

    }

    @Test public void test2() throws IOException {

    RandomAccessFile raf1 = new RandomAccessFile(“hello.txt”,”rw”);

    raf1.write(“xyz”.getBytes());

    raf1.close();

    }

}

  1. <a name="N8Udj"></a>
  2. ### 11.2、RandomAccessFile实现数据的插入操作
  3. ```java
  4. import org.junit.Test;
  5. import java.io.File;
  6. import java.io.IOException;
  7. import java.io.RandomAccessFile;
  8. /**
  9. * RandomAccessFile的使用
  10. * 1.RandomAccessFile直接继承于java.lang.Object类,实现了DataInput和DataOutput接口
  11. * 2.RandomAccessFile既可以作为一个输入流,又可以作为一个输出流
  12. * 3.如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建。
  13. * 如果写出到的文件存在,则会对原有文件内容进行覆盖。(默认情况下,从头覆盖)
  14. *
  15. * 4.可以通过相关的操作,实现RandomAccessFile“插入”数据的效果
  16. */
  17. public class RandomAccessFileTest {
  18. /**
  19. * 使用RandomAccessFile实现数据的插入效果
  20. */
  21. @Test
  22. public void test3() throws IOException {
  23. RandomAccessFile raf1 = new RandomAccessFile("hello.txt","rw");
  24. raf1.seek(3);//将指针调到角标为3的位置
  25. //保存指针3后面的所有数据到StringBuilder中
  26. StringBuilder builder = new StringBuilder((int) new File("hello.txt").length());
  27. byte[] buffer = new byte[20];
  28. int len;
  29. while((len = raf1.read(buffer)) != -1){
  30. builder.append(new String(buffer,0,len)) ;
  31. }
  32. //调回指针,写入“xyz”
  33. raf1.seek(3);
  34. raf1.write("xyz".getBytes());
  35. //将StringBuilder中的数据写入到文件中
  36. raf1.write(builder.toString().getBytes());
  37. raf1.close();
  38. //思考:将StringBuilder替换为ByteArrayOutputStream
  39. }
  40. }

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

Java NIO (New IO,Non-Blocking IO)是从Java 1.4版本开始引入的一套新的IO API,可以替代标准的Java IO API。NIO与原来的IO有同样的作用和目的,但是使用的方式完全不同,NIO支持面向缓冲区的(IO是面向流的)、基于通道的IO操作。NIO将以更加高效的方式进行文件的读写操作。
Java API中提供了两套NIO,一套是针对标准输入输出NIO,另一套就是网络编程NIO。
|——-java.nio.channels.Channel
|——-FileChannel:处理本地文件
|——-SocketChannel:TCP网络编程的客户端的Channel
|——-ServerSocketChannel:TCP网络编程的服务器端的Channel
|——-DatagramChannel:UDP网络编程中发送端和接收端的Channel
随着JDK 7 的发布,Java对NIO进行了极大的扩展,增强了对文件处理和文件系统特性的支持,以至于我们称他们为NIO.2。因为NIO 提供的一些功能,NIO已经成为文件处理中越来越重要的部分。
早期的Java只提供了一个File类来访问文件系统,但File类的功能比较有限,所提供的方法性能也不高。而且,大多数方法在出错时仅返回失败,并不会提供异常信息。
NIO. 2为了弥补这种不足,引入了Path接口,代表一个平台无关的平台路径,描述了目录结构中文件的位置。Path可以看成是File类的升级版本,实际引用的资源也可以不存在。
在以前IO操作都是这样写的:

  1. import java.io.File;
  2. File file = new File(“index.html”);

但在Java7 中,我们可以这样写:

  1. import java.nio.file.Path;
  2. import java.nio.file.Paths;
  3. Path path = Paths.get(“index.html”);

同时,NIO.2在java.nio.file包下还提供了Files、Paths工具类,Files包含了大量静态的工具方法来操作文件;Paths则包含了两个返回Path的静态工厂方法。
Paths类提供的静态get()方法用来获取Path对象:
static Pathget(String first, String … more) : 用于将多个字符串串连成路径
static Path get(URI uri): 返回指定uri对应的Path路径
1、Path接口
image.png
2、Files 类
image.png
image.png