输出流介绍

输入输出用在什么地方?
◆复制粘贴文件。
◆修改文件

Java中的输入输出流
◆ System。out;printIng;/将数据输出到屏幕上
◆ new Scanner(System.in)next;/获取输入流的数据

◆输入:读取数据
◆输出:写入数据

File类的使用

File类的介绍

什么是文件?
◆文件可认为是相关记录或放在一起的数据的集合
◆举例
◆文件、文件夹都是文件

◆Java中使用 java.io.Fie类
◆对文件进行操作

File类的常见方法

image.png

字节流

字节输入流 EInputstream
字节输出流 OutputStream
image.png

image.png

FileInputStream

从文件系统中的某个文件中获取输入字节
用于读取文件、图像等数据的原始字节流
image.png

FileOutputStream

image.png

  1. public class FileCtrl {
  2. // 创建文件
  3. public static File CreateFile(String filePath){
  4. // 1. 创建文件对象
  5. File file = new File(filePath);
  6. // 2. 判断文件是否存在
  7. if(!file.exists()){
  8. try {
  9. file.createNewFile();
  10. return file;
  11. } catch (IOException e) {
  12. e.printStackTrace();
  13. return null;
  14. }
  15. }
  16. return file;
  17. }
  18. public static String ReadFile(File file){
  19. try {
  20. // 1. 创建文件输入流对象
  21. FileInputStream inputStream = new FileInputStream(file);
  22. // 2. 循环读取
  23. ByteArrayOutputStream arrayOutputStream = new ByteArrayOutputStream();
  24. byte bytes[] = new byte[10 24];// 缓冲数组
  25. int nRet = 0; //读取的返回字节数
  26. while (true){
  27. nRet = inputStream.read(bytes,0,1024);
  28. if(nRet==-1)break;
  29. arrayOutputStream.write(bytes,0,nRet);
  30. }
  31. inputStream.close();//记得关闭文件
  32. return new String(arrayOutputStream.toString());
  33. } catch (FileNotFoundException e) {
  34. e.printStackTrace();
  35. } catch (IOException e) {
  36. e.printStackTrace();
  37. }
  38. return null;
  39. }
  40. public static boolean WriteFile(File file,String content){
  41. boolean bRet = false;
  42. try {
  43. // 1. 创建文件输出流对象
  44. FileOutputStream fileOutputStream = new FileOutputStream(file);
  45. // 2. 写入数据
  46. byte bytes[] = content.getBytes();
  47. fileOutputStream.write(bytes);
  48. bRet = true;
  49. fileOutputStream.close();//记得关闭文件
  50. } catch (FileNotFoundException e) {
  51. e.printStackTrace();
  52. } catch (IOException e) {
  53. e.printStackTrace();
  54. }
  55. return bRet;
  56. }
  57. public static String DeleteFile(File file){
  58. if (file.exists()){
  59. // 删除文件
  60. if (file.isFile()){
  61. file.delete();
  62. }
  63. // 删除目录
  64. else if (file.isDirectory()){
  65. // 删除目录下的每一个文件
  66. File[] files = file.listFiles();
  67. for (int i = 0; i < files.length; i++) {
  68. // 递归删除
  69. DeleteFile(files[i]);
  70. }
  71. // 删除目录
  72. file.delete();
  73. }
  74. }
  75. return null;
  76. }
  77. }
  1. public class Main {
  2. public static void main(String[] args) {
  3. File file = FileCtrl.CreateFile("1.txt");
  4. FileCtrl.WriteFile(file,"hello15pb");
  5. String content = FileCtrl.ReadFile(file);
  6. System.out.println(content);
  7. // FileCtrl.DeleteFile(file);
  8. }
  9. }

字符流

字符输入流 Reader
字符输出流 Writer
image.png

image.png

Java输入输出流体系

image.png

比较器

◆如果现在要想为一组对象进行排序,那么必须有一个可以区分出对象大小的关系操作,而这个操作在Java之中就是利用比较器完成的常用比较器:Comparable如果要为对象指定比较规则,那么对象所在的类必须实现 Comparable接口,下面首先来看一下这个接口的定义:

  1. public interface Comparable<T>{
  2. public int compareTo(T o);
  3. }

根据文档的要求:要排序的数组所在的类一定要实现此接口,此接口返回的是int型数据,而用户覆写此方法的时候只需要返回三种结果:1(>0)、-1(<0)、0(=0)即可。

  1. public class Person implements Comparable<Person> {
  2. public String getName() {
  3. return name;
  4. }
  5. public void setName(String name) {
  6. this.name = name;
  7. }
  8. public int getAge() {
  9. return age;
  10. }
  11. public void setAge(int age) {
  12. this.age = age;
  13. }
  14. private String name ;
  15. private int age ;
  16. public Person(String name,int age) {
  17. this.name = name ;
  18. this.age = age ;
  19. }
  20. @Override
  21. public String toString() {
  22. return "Person [name=" + name + ", age=" + age + "]\n";
  23. }
  24. @Override
  25. public int compareTo(Person o) {
  26. if (this.age > o.age) {
  27. return 1;
  28. } else if (this.age < o.age) {
  29. return -1;
  30. } else {
  31. return 0;
  32. }
  33. }
  34. }
  1. public class Main {
  2. public static void main(String[] args) {
  3. Person per[] = new Person[] {
  4. new Person("张三", 20),
  5. new Person("李四", 19),
  6. new Person("王五", 21)
  7. };
  8. Arrays.sort(per) ; // 排序
  9. System.out.println(Arrays.toString(per));
  10. }
  11. }

挽救的比较器

之前使用的 Comparable实际上是在一个类定义的时候就已经具备的功能了但是如果说现在一个类已经定义完成了。
image.png
为了解决这样的问题,在java里面又提供了另外一个比较器接口java.util.Comparator接口,这个接口的定义如下:

  1. public interface Comparator<T>{
  2. public int compare (t ol, T 02);
  3. public boolean equals(object obj);
  4. }

◆在 compare()方法上存在了两个参数用于比较大小,而要想使用这个接口,需要单独定义一个比较规则类

  1. public class PersonComparator implements Comparator<Person> {
  2. @Override
  3. public int compare(Person o1, Person o2) {
  4. if (o1.getAge() > o2.getAge()) {
  5. return 1;
  6. } else if (o1.getAge() < o2.getAge()) {
  7. return -1;
  8. } else {
  9. return 0;
  10. }
  11. }
  12. }
  1. public class Main {
  2. public static void main(String[] args) {
  3. Person per[] = new Person[] {
  4. new Person("张三", 20),
  5. new Person("李四", 19),
  6. new Person("王五", 21)
  7. };
  8. Arrays.sort(per, new PersonComparator()); // 排序
  9. System.out.println(Arrays.toString(per));
  10. }
  11. }