当前位置: 首页 > news >正文

JAVA-IO

 目录

IO流

一 字节流

1 FileOutStream

1 书写:

2 换行书写与续写:

2 FileInputStream

1 读取数据

2 循环读取:

二 字符流

1 FileReader

1 空参的read()方法读取数据:

2 有参的read()方法读取数据:

3 指定字符编码读取

2 FileWriter

3 补充:字符输入流底层-缓冲区:

4 补充:字符输出流底层-缓冲区

三.字节缓冲流-对基本流进行了包装

四 字符缓冲流-对基本流进行了包装

五 应用

1 文件夹的拷贝:

2 文件加密:

3 读取文件修改内容:

4 拷贝文件夹(四种方式)

5 修改文本顺序

6 软件运行次数

7 简单应用

六 转换流

应用1:指定字符编码读取数据

应用2:使用指定字符编码进行写入

应用3 :将文本的编码方式更改写入另一个文本

阶段性总结

七 序列化流

八 反序列化流

​编辑1

3

九 打印流

1 字节打印流

2 字符打印流

十 解压缩流 /压缩流

使用idea解压文件:

使用idea压缩文件:

十一 Commons-io/Hutool


IO流

File:

  • 表示系统中文件或者文件的路径,只能对文件本身进行操作,不能读写文件里面的内容。

IO流

  • 存储和读取数据的解决方案,用于读写文件中的数据(可以读写文件中的数据或者网络中的数据)

流的分类:

1. 什么是IO流?

  • IO流是指计算机系统中用来存储和读取数据的一种解决方案。
  • I代表Input(输入),O代表Output(输出)。
  • 流(Stream)就像水流一样传输数据,它是一系列连续的数据单元。

2. IO流的作用?

  • IO流主要用于读写数据,无论是本地文件还是网络上的数据。

3. IO流按照流向可以分为哪两种流?

  • 输出流(OutputStream):从程序到文件的方向流动,即将数据从程序发送到外部设备(如磁盘文件)。
  • 输入流(InputStream):从文件到程序的方向流动,即将数据从外部设备(如磁盘文件)读取到程序中。

4. IO流按照操作文件的类型可以分为哪两种流?

  • 字节流(Byte Stream):可以操作所有类型的文件,因为它们是以二进制形式处理数据的。
  • 字符流(Character Stream):只能操作纯文本文件,因为它们是以字符编码的形式处理数据的。

5. 什么是纯文本文件?

  • 纯文本文件是可以用Windows系统自带的记事本打开并且能够读懂的文件。这类文件只包含文本信息,没有特殊的格式或排版指令。

IO的体系结构:

一 字节流

1 FileOutStream

操作本地文件的字节输出流,可以把程序中的数据写到本地文件中。

1 书写:

代码实现:

import java.io.FileOutputStream;
import java.io.IOException;public class shu15_9 {public static void main(String[] args) throws IOException {// 创建对象->创建对象时参数是路径或者FIle都是可以的,// 如果文件不存在那么将会创建一个新的文件,但是要保证父级路径要存在FileOutputStream fos = new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt");// 写入数据->文件存在会覆盖原有的内容(以读取为算)// write方法写入的是整数,但是实际上写到本地文件中的是整数在ASCLL码上对应的字符//一次写一个byte num =99;fos.write(num);//一次写多个byte[] buf = {97, 98, 99,100,101,102,103,104,105};fos.write(buf);//多个数据的部分截取,第一个参数是首索引位置,第二个位置是元素个数fos.write(buf,2,4);// 释放资源->可以解除资源的占用如果不写文件会被程序占用fos.close();}
}

2 换行书写与续写:

import java.io.FileOutputStream;
import java.io.IOException;public class shu15_10 {public static void main(String[] args) throws IOException {FileOutputStream fos = new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt");String str = "anxainhaoshuai";//getBytes的返回值是字节数组fos.write(str.getBytes());//换行书写String str2 = "anxiannihao";String str3 = "\r\n";fos.write(str3.getBytes());fos.write(str2.getBytes());//释放资源fos.close();//续写需要讲构造方法的第二个参数改为trueFileOutputStream fos2 = new FileOutputStream("shu15\\a.txt",true);}
}

2 FileInputStream

1 读取数据

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;public class shu15_11 {public static void main(String[] args) throws IOException {//创建对象FileInputStream fis = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt");//读取数据int read = fis.read();System.out.println(read);//释放资源fis.close();//文件不存在直接报错,一次只能读取一个字节,读出来的是ASCLL码值(可以使用char转换)读到文件末尾方法返回-1//输出流不存在会创建(父级路径存在)//输入流不存在会报错}
}

2 循环读取:

import java.io.FileInputStream;
import java.io.IOException;public class shu15_12 {public static void main(String[] args) throws IOException {FileInputStream fis = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt");int b;while (((b = fis.read()) != -1)) {System.out.print((char)b);}fis.close();}
}
import java.io.FileInputStream;
import java.io.IOException;public class shu15_13 {public static void main(String[] args) throws IOException {FileInputStream fis = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\shu15_7.java");int len;byte[] buf = new byte[1024];while((len = fis.read(buf))!=-1){System.out.write(buf,0,len);}fis.close();}
}

读取多个数据:如果放在字节数组当中,其是遵循覆盖原则

代码实现:

import java.io.FileInputStream;
import java.io.IOException;public class shu15_12 {public static void main(String[] args) throws IOException {FileInputStream fis = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt");byte[] arr = new byte[2];int read = fis.read(arr);System.out.println(read);System.out.println(new String(arr, 0, read));int read2 = fis.read(arr);System.out.println(read2);System.out.println(new String(arr, 0, read2));int read3 = fis.read(arr);System.out.println(read3);System.out.println(new String(arr, 0, read3));fis.close();}
}

执行结果:

异常使用try-catch

import java.io.*;public class shu15_14 {public static void main(String[] args) {try (FileInputStream f1 = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt"); FileOutputStream f2 = new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\b.txt")) {int len;byte[] arr = new byte[1024];while ((len = f1.read(arr)) != -1) {f2.write(arr, 0, len);}} catch (IOException e) {String message = e.getMessage();System.out.println(message);}}
}

补充

二 字符流

1 特点:

  • 输入流:一次读取一个字节遇到中文时,一次读取多个字节。
  • 输出流:底层会把数据按照指定的编码方式进行编码,变成字节再写到文件中。

1 FileReader

1 空参的read()方法读取数据:

import java.io.FileReader;
import java.io.IOException;public class shu15_16 {public static void main(String[] args) throws IOException {//创建对象并关联本地文件FileReader fr = new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\shu15_15.java");int len;//空参的read方法//默认也是一个字节一个字节的读取,但是遇到中文会一次读取多个//读取之后还会转为十进制,最终返回while ((len = fr.read()) != -1) {System.out.print((char) len);}fr.close();}
}

2 有参的read()方法读取数据:
 

import java.io.FileReader;
import java.io.IOException;public class shu15_17 {public static void main(String[] args) throws IOException {//创建对象FileReader fr = new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\shu15_16.java");char[] arr = new char[3];int len;//有参的read//如果读取到汉字会读取多个字节,并进行解码并转成十进制,最终还会转为对应的字符while ((len = fr.read(arr)) != -1) {System.out.print(new String(arr, 0, len));}fr.close();}
}

3 指定字符编码读取

import java.io.*;
import java.nio.charset.Charset;public class shu15_32 {public static void main(String[] args) throws IOException {FileReader fileReader = new FileReader("C:\\\\Users\\\\ABC\\\\IdeaProjects\\\\My-projects\\\\myfirstmodule\\\\src\\\\itheima\\\\b.txt", Charset.forName("GBK"));int len;while ((len = fileReader.read()) != -1) {System.out.print((char) len);}fileReader.close();}
}

2 FileWriter

写入数据:

import java.io.FileWriter;
import java.io.IOException;public class shu15_18 {public static void main(String[] args) throws IOException {//单独的写数据FileWriter fr = new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt",true);//传入一个整数fr.write(25105);//传入一个字符串fr.write("Hello World ");fr.write("Hello World ",1,5);//传入一个字符数组char[] arr = {'安','贤','好','帅','6','6','6','6'};fr.write(arr);fr.write(arr,0,3);//释放资源fr.close();}
}

3 补充:字符输入流底层-缓冲区:

会有一个8192字节的缓冲区,将需要读取的数据尽可能多的放到缓冲区中,每次就直接冲缓冲区中读取数据,缓冲区读完了从文件中读取,文件中读完了返回-1,退出读取。

【Java】`字符输入流` 的底层原理超详解_java 字节输入流原理-CSDN博客

4 补充:字符输出流底层-缓冲区

会有一个8192的缓冲区,每次写入先写到缓冲区当中,如果满了将这8192字节的数据填入本地文件中,flush方法可以将已经放到缓冲区的内容放到本地文件中,close直接结束输出流的写入,将缓冲区的内容放到本地文件中

【Java】`字符输出流` 的底层原理超详解_java的输出流是从缓冲区写到磁盘中了吗-CSDN博客

三.字节缓冲流-对基本流进行了包装

实现文件拷贝

代码实现:

import java.io.*;public class shu15_25 {public static void main(String[] args) throws IOException {BufferedInputStream bis = new BufferedInputStream(new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\b.txt"));BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\f.txt"));int len;while ((len = bis.read()) != -1) {bos.write(len);}bis.close();bos.close();}
}

运行结果:

四 字符缓冲流-对基本流进行了包装

特有方法:

代码实现:

import java.io.*;public class shu15_26 {public static void main(String[] args) throws IOException {//创建对象BufferedReader br = new BufferedReader(new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\b.txt"));BufferedWriter bw = new BufferedWriter(new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\g.txt"));String s;while ((s = br.readLine()) != null) {bw.write(s);bw.newLine();}br.close();bw.close();}}
import java.io.*;
import java.nio.charset.Charset;public class ax3 {public static void main(String[] args) throws IOException {FileReader fr = new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt", Charset.forName("GBK"));BufferedReader br = new BufferedReader(fr);
//        int len;
//        while ((len = br.read()) != -1) {
//            System.out.print((char) len);
//        }String s;while ((s = br.readLine()) != null) {System.out.println(s);}}
}

缓冲流总结

五 应用

1 文件夹的拷贝:

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;public class shu15_20 {public static void main(String[] args) throws IOException {File f1 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\ax");File f2 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\AX_1");f2.mkdir();copy_File(f1, f2);}private static void copy_File(File f1, File f2) throws IOException {for (File f : f1.listFiles()) {if (f.isFile()) {File newFile = new File(f2.getPath() + "\\" + f.getName());newFile.createNewFile();FileInputStream fis = new FileInputStream(f);FileOutputStream fos = new FileOutputStream(newFile);int len;byte[] arr = new byte[1024];while ((len = fis.read(arr)) != -1) {fos.write(arr, 0, len);}fos.close();fis.close();} else {File newFile = new File(f2.getPath() + "\\" + f.getName());newFile.mkdir();copy_File(f, newFile);}}}
}

2 文件加密:

加密:

使用对100取异或,将原文件加密成一个新文件,然后将这个新文件,再次对10取异或即可解密

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;public class shu15_21 {public static void main(String[] args) throws IOException {FileInputStream fis = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\新建文件夹\\0.jpg");FileOutputStream fos = new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\ax.jpg");int len;while((len=fis.read())!=-1){fos.write(len^10);}fis.close();fos.close();}
}

解密:

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;public class shu15_21 {public static void main(String[] args) throws IOException {FileInputStream fis = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\ax.jpg");FileOutputStream fos = new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\axx.jpg");int len;while ((len = fis.read()) != -1) {fos.write(len ^ 10);}fis.close();fos.close();}
}

3 读取文件修改内容:

记事本内容:

代码实现

import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;public class shu15_24 {public static void main(String[] args) throws IOException {//创建对象用于读取数据FileReader fr = new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt");//用于存储数据StringBuilder str = new StringBuilder();int len;while((len=fr.read())!=-1){str.append((char)len);}fr.close();String[] arrStr = str.toString().split("-");ArrayList<Integer> arr = new ArrayList<>();for (String s : arrStr) {int i = Integer.parseInt(s);arr.add(i);}Collections.sort(arr);//写入数据FileWriter fw = new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\a.txt");for (int i = 0; i < arr.size()-1; i++) {fw.write(arr.get(i) + "-");}fw.write(arr.get(arr.size()-1)+"");fw.close();}
}

运行结果:

4 拷贝文件夹(四种方式)

  • 字节流的基本流:一次读写一个字节
  • 字节流的基本流:一次读写一个字节数组
  • 字节缓冲流:一次读写一个字节
  • 字节缓冲流:一次读写一个字节数组

1 字节流的基本流:一次读写一个字节

import java.io.*;public class shu15_27 {public static void main(String[] args) throws IOException {File f1 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\ax");File f2 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\Ax_2");f2.mkdir();coop(f1, f2);}private static void coop(File f1, File f2) throws IOException {for (File f : f1.listFiles()) {if (f.isFile()) {File newfile = new File(f2.getPath() + "\\" + f.getName());newfile.createNewFile();FileInputStream F1 = new FileInputStream(f);FileOutputStream F2 = new FileOutputStream(newfile);int len;while ((len = F1.read()) != -1) {F2.write(len);}F2.close();F1.close();} else {File newFile = new File(f2.getPath() + "\\" + f.getName());newFile.mkdir();coop(f, newFile);}}}
}

2 字节流的基本流:一次读写一个字节数组

import java.io.*;public class shu15_27 {public static void main(String[] args) throws IOException {File f1 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\ax");File f2 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\Ax_3");f2.mkdir();coop(f1, f2);}private static void coop(File f1,File f2) throws IOException {for (File f:f1.listFiles()){if(f.isFile()){File newfile = new File(f2.getPath()+"\\"+f.getName());newfile.createNewFile();FileInputStream F1 = new FileInputStream(f);FileOutputStream F2 = new FileOutputStream(newfile);int len;byte[]arr = new byte[1024];while((len=F1.read(arr))!=-1){F2.write(arr,0,len);}F2.close();F1.close();}else {File newFile = new File(f2.getPath()+"\\"+f.getName());newFile.mkdir();coop(f,newFile);}}}
}

3 字节缓冲流:一次读写一个字节

import java.io.*;public class shu15_27 {public static void main(String[] args) throws IOException {File f1 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\ax");File f2 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\Ax_4");f2.mkdir();cooop(f1, f2);}private static void cooop(File f1, File f2) throws IOException {for (File f : f1.listFiles()) {if (f.isFile()) {File newfile = new File(f2.getPath() + "\\" + f.getName());newfile.createNewFile();BufferedInputStream F1 = new BufferedInputStream(new FileInputStream(f));BufferedOutputStream F2 = new BufferedOutputStream(new FileOutputStream(newfile));int len;while ((len = F1.read()) != -1) {F2.write(len);}F2.close();F1.close();} else {File new_mkdir = new File(f2.getPath() + "\\" + f.getName());new_mkdir.mkdir();cooop(f, new_mkdir);}}}
}

4 字节缓冲流:一次读写一个字节数组

import java.io.*;public class shu15_27 {public static void main(String[] args) throws IOException {File f1 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\ax");File f2 = new File("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\Ax_4");f2.mkdir();cooop(f1, f2);}private static void cooop(File f1, File f2) throws IOException {for (File f : f1.listFiles()) {if (f.isFile()) {File newfile = new File(f2.getPath() + "\\" + f.getName());newfile.createNewFile();BufferedInputStream F1 = new BufferedInputStream(new FileInputStream(f));BufferedOutputStream F2 = new BufferedOutputStream(new FileOutputStream(newfile));int len;byte[] arr = new byte[1024];while ((len = F1.read(arr)) != -1) {F2.write(arr, 0, len);}F2.close();F1.close();} else {File new_mkdir = new File(f2.getPath() + "\\" + f.getName());new_mkdir.mkdir();cooop(f, new_mkdir);}}}
}

5 修改文本顺序

需求:将一个带顺序的文本排序

第一种代码实现:(使用Collections对集合进行排序)

import java.io.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;public class shu15_28 {public static void main(String[] args) throws IOException {//创建输入缓冲流对象BufferedReader F1 = new BufferedReader(new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\c.txt"));//将读取的数据放到集合中ArrayList<String> list = new ArrayList<>();String strLine;//readLine为读取一行(缓冲流特有)while ((strLine = F1.readLine()) != null) {list.add(strLine);}F1.close();//使用集合工具类对list进行排序(匿名内部类)Collections.sort(list, new Comparator<String>() {@Overridepublic int compare(String o1, String o2) {//以.分隔开(需要转义)return Integer.parseInt(o1.split("\\.")[0]) - Integer.parseInt(o2.split("\\.")[0]);}});//写入数据,并且不覆盖--newLine为换行(缓冲流特有)BufferedWriter F2 = new BufferedWriter(new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\c.txt", true));F2.newLine();for (String s : list) {F2.write(s);//换行操作F2.newLine();}F2.close();}
}

第二种代码实现(使用TreeMap)

import java.io.*;
import java.util.*;public class shu15_29 {public static void main(String[] args) throws IOException {//创建输入缓冲流对象BufferedReader F1 = new BufferedReader(new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\c.txt"));//将读取的数据放到集合中TreeMap<Integer, String> map = new TreeMap<>();String strLine;//readLine为读取一行(缓冲流特有)while ((strLine = F1.readLine()) != null) {String[] split = strLine.split("\\.");map.put(Integer.parseInt(split[0]), strLine);}F1.close();System.out.println(map);//写入数据,并且不覆盖--newLine为换行(缓冲流特有)BufferedWriter F2 = new BufferedWriter(new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\shu15\\c.txt"));Set<Map.Entry<Integer, String>> entries = map.entrySet();F2.newLine();for (Map.Entry<Integer, String> entry : entries) {F2.write(entry.getValue());F2.newLine();}F2.close();}
}

6 软件运行次数

代码实现:-数据存储在本地文档

import java.io.*;public class shu15_30 {public static void main(String[] args) throws IOException {BufferedReader br = new BufferedReader(new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));int count = Integer.parseInt(br.readLine());count++;if(count<=3){System.out.println("欢迎第"+count+"次使用");br.close();}else{System.out.println("次数使用结束");System.exit(0);}BufferedWriter bw = new BufferedWriter(new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));bw.write(count+"");bw.close();}
}

7 简单应用

import java.io.*;public class shu15_31 {public static void main(String[] args) throws IOException {//1FileInputStream fis = new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\b.txt");FileOutputStream fos = new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt");int len;byte[] buffer = new byte[1024];while((len=fis.read(buffer))!=-1){fos.write(buffer,0,len);}fos.close();fis.close();//2FileReader f2 = new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\b.txt");FileWriter f3 = new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt");int lens;while ((lens = f2.read()) != -1) {f3.write(lens);System.out.print((char) lens);}f3.write("helloworld");f3.write("helloworld", 0, 4);f3.write(new char[]{'a', 'c', 'b', 's', 'i'}, 0, 3);f2.close();f3.close();//3BufferedReader f4 = new BufferedReader(new FileReader("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\b.txt"));BufferedWriter f5 = new BufferedWriter(new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt"));String len;while((len= f4.readLine())!=null){f5.write(len);f5.newLine();}f4.close();f5.close();}}

六 转换流

转换流是字符流和字节流之间的桥梁。

  • 可以将字节流转换为字符流然后调用相关方法eg:字节流使用转换流再使用字符缓冲流即可调用相关方法

FileReader 参数中可以指定编码方式Charset.format(" ")

FileWriter 参数中可以指定编码方式Charset.format(" ") 还有是否续写

InputStreamReader 可以指定字符编码方式“ ”

OutStreamWriter 可以指定字符编码方式“ ”

应用1:指定字符编码读取数据

import java.io.*;
import java.nio.charset.Charset;public class shu15_32 {public static void main(String[] args) throws IOException {//使用转换流进行读取InputStreamReader isr = new InputStreamReader(new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\b.txt"), "GBK");int len;while ((len = isr.read()) != -1) {System.out.print((char) len);}isr.close();//使用字符流读取FileReader fileReader = new FileReader("C:\\\\Users\\\\ABC\\\\IdeaProjects\\\\My-projects\\\\myfirstmodule\\\\src\\\\itheima\\\\b.txt", Charset.forName("GBK"));int len;while ((len = fileReader.read()) != -1) {System.out.print((char) len);}fileReader.close();}
}

应用2:使用指定字符编码进行写入

import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.nio.charset.Charset;public class shu15_33 {public static void main(String[] args) throws IOException {//1创建转换流对象OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt",true),"GBK");osw.write("你好");osw.close();//使用字符流FileWriter fw = new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt", Charset.forName("GBK"),true);fw.write("skladjk");fw.close();}
}

应用3 :将文本的编码方式更改写入另一个文本

import java.io.*;public class shu15_34 {public static void main(String[] args) throws IOException {InputStreamReader fis = new InputStreamReader(new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\b.txt"),"GBK");OutputStreamWriter fos = new OutputStreamWriter(new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt"),"UTF-8");int len;while ((len = fis.read())!=-1){fos.write(len);}fis.close();fos.close();}
}

2

import java.io.*;
import java.nio.charset.Charset;public class shu15_34 {public static void main(String[] args) throws IOException {FileReader fr = new FileReader("C:\\\\Users\\\\ABC\\\\IdeaProjects\\\\My-projects\\\\myfirstmodule\\\\src\\\\itheima\\\\b.txt", Charset.forName("GBK"));FileWriter fw = new FileWriter("C:\\\\Users\\\\ABC\\\\IdeaProjects\\\\My-projects\\\\myfirstmodule\\\\src\\\\itheima\\\\a.txt", Charset.forName("UTF-8"))int len;while ((len = fr.read()) != -1) {fw.write(len);}fr.close();fw.close();}
}

阶段性总结

1
FileOutStream字节输出流->write
FileInputStream字节输入流->read
字节输出输入->大多数用于拷贝(读取数据汉字会出现编码问题)注意事项:read可以读取一个字节,字节数组,字节数组的一部分
write可以写入一个字节,字节数组,字节数组的一部分2
FileWriter字符输出流->write
FileReader字符输入流->read
字符输入输出->大多数用于文件读取写入
注意事项:write可以写入一个字符,一个字符数组,字符数组的一部分
一个字符串,字符串的一部分
read可以读取一个字符,读取一个字符数组,字符数组的一部分3
BufferedOutputStream字节缓冲输出流BufferedInputStream字节缓冲输入流4
BufferedReader字符缓冲输入流 readLine
BufferedWriter字符缓冲输出流 newLine
注意事项:readLine一次读取一行newLine换行read的返回值为编码值
5
FileReader 字符流参数中可以指定编码方式Charset.format(" ")
FileWriter 字符流参数中可以指定编码方式Charset.format(" ")InputStreamReader 可以指定字符编码方式“ ”
OutStreamWriter 可以指定字符编码方式“ ”6
InputStreamReader,OutputStreamWriter,BufferedOutputStream,BufferedInputStream的首参数需要为字节流
BufferedReader,BufferedWriter的首参数要为字符流

七 序列化流

序列化流:可以将java中的对象写到本地文件中。(对象操作输出流)(是字节流的高级流)

代码实现->将一个对象写到本地文档中-类需要实现Serlizable接口

import java.io.Serializable;public class Student implements Serializable {private String name;private int age;public Student(String name, int age) {this.name = name;this.age = age;}public Student() {}public Student(String s){this.name = s.split("-")[0];this.age = Integer.parseInt(s.split("-")[1]);}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}@Overridepublic String toString() {return "Student [name=" + name + ", age=" + age + "]";}
}

方法调用:

import itheima.shu14.Student;import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;public class shu15_35 {public static void main(String[] args) throws IOException {//创建对象Student ax = new Student("ax", 100);//创建序列化对象ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));//写入对象oos.writeObject(ax);//释放资源oos.close();}
}

八 反序列化流

反序列化流:可以将序列化到本地文件中的对象读取到程序中来。(对象操作输入流)(高级流)


1

import java.io.*;public class shu15_36 {public static void main(String[] args) throws IOException, ClassNotFoundException {//创建反序列化输入流的对象ObjectInputStream ois = new ObjectInputStream(new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));//读取数据Object o = ois.readObject();System.out.println(o);//释放资源ois.close();}
}

javabean

3

反序列化流可以利用瞬态对对象内容进行加密(不会将当前属性序列化到当前本地文件中)

import java.io.Serial;
import java.io.Serializable;public class Student implements Serializable {@Serialprivate static final long serialVersionUID = 1L;private String name;private int age;//瞬态private transient String password;public Student(String name, int age, String password) {this.name = name;this.age = age;this.password = password;}public Student() {}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public String getPassword() {return password;}public void setPassword(String password) {this.password = password;}@Overridepublic String toString() {return "Student [name=" + name + ", age=" + age + ", password=" + password + "]";}
}

序列化:

import itheima.shu14.Student;import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;public class shu15_35 {public static void main(String[] args) throws IOException {//创建对象Student ax = new Student("ax", 100,"886789");//创建序列化对象ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));//写入对象oos.writeObject(ax);//释放资源oos.close();}
}

反序列化:

import java.io.*;public class shu15_36 {public static void main(String[] args) throws IOException, ClassNotFoundException {//创建反序列化输入流的对象ObjectInputStream ois = new ObjectInputStream(new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));//读取数据Object o = ois.readObject();System.out.println(o);//释放资源ois.close();}
}

总结

练习:读取多个对象。

javabean

import java.io.Serial;
import java.io.Serializable;public class Student implements Serializable {@Serialprivate static final long serialVersionUID = 1L;private String name;private int age;//瞬态private transient String password;public Student(String name, int age, String password) {this.name = name;this.age = age;this.password = password;}public Student() {}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public String getPassword() {return password;}public void setPassword(String password) {this.password = password;}@Overridepublic String toString() {return "Student [name=" + name + ", age=" + age + ", password=" + password + "]";}
}

序列化对象:

import itheima.shu14.Student;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.util.ArrayList;public class shu15_100 {public static void main(String[] args) throws IOException {//创建对象ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));//写入数据(放入集合中)ArrayList<Student> students = new ArrayList<>();students.add(new Student("ax5", 100, "as"));students.add(new Student("ax4", 1000, "aas"));students.add(new Student("ax3", 10000, "aaas"));students.add(new Student("ax2", 100000, "aaaas"));students.add(new Student("ax1", 1000000, "aaaas"));oos.writeObject(students);//释放资源oos.close();}
}

反序列化:

import itheima.shu14.Student;import java.io.*;
import java.util.ArrayList;public class shu15_101 {public static void main(String[] args) throws IOException, ClassNotFoundException {//创建反序列化对象ObjectInputStream ois = new ObjectInputStream(new FileInputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\c.txt"));//读取数据ArrayList<Student> o = (ArrayList<Student>) ois.readObject();for (Student s : o) {System.out.println(s);}ois.close();}
}

九 打印流

  • 不能读只能写

1 字节打印流

构造方法:

成员方法

代码实现:

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.nio.charset.Charset;public class shu15_102 {public static void main(String[] args) throws FileNotFoundException {PrintStream ps = new PrintStream(new FileOutputStream("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt"), true,Charset.forName("UTF-8"));ps.println("Hello World");ps.print("你好");ps.println();ps.printf("%d",12);ps.close();}
}

运行结果:

2 字符打印流

构造方法(字符流底层有缓冲区,想要自动刷新需要开启)

成员方法:

代码实现:

import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;public class shu15_104 {public static void main(String[] args) throws IOException {PrintWriter out = new PrintWriter(new FileWriter("C:\\Users\\ABC\\IdeaProjects\\My-projects\\myfirstmodule\\src\\itheima\\a.txt"), true);out.println("hskjhdkha");out.print("skdhajkhdh");out.close();}
}

补充:

十 解压缩流 /压缩流

使用idea解压文件:

import java.io.*;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;public class shu15_105 {public static void main(String[] args) throws IOException {File f1 = new File("C:\\Users\\ABC\\Downloads\\yolov5-5.0 (1).zip");File f2 = new File("D:\\ABC");shu15(f1, f2);}public static void shu15(File f1, File f2) throws IOException {//创建压缩流对象读取压缩包中的内容ZipInputStream zip = new ZipInputStream(new FileInputStream(f1));//获取压缩包中的对象文件ZipEntry len;while ((len = zip.getNextEntry()) != null) {System.out.println(len);if (len.isDirectory()) {//需要创建一个同样的文件夹File file = new File(f2, len.toString());file.mkdirs();} else {FileOutputStream fos = new FileOutputStream(new File(f2, len.toString()));int b;while ((b = zip.read()) != -1) {fos.write(b);}fos.close();zip.closeEntry();}}zip.close();}
}

使用idea压缩文件:

import java.io.*;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;public class shu15_106 {public static void main(String[] args) throws IOException {//创建File对象表示要压缩的文件File f1 = new File("D:\\ABC\\yolov5-7.0");//创建File对象博爱平时压缩包放在哪里File f2 = f1.getParentFile();//创建对象表示压缩包的路径File f3 = new File(f2,f1.getName()+".zip");//创建压缩流关联压缩包ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(f3));//获取f1中的每一个文件,变成ZipEntry对象,放入压缩包中shu15(f1, zos, f1.getName());//释放资源zos.close();}private static void shu15(File f1, ZipOutputStream zos,String name) throws IOException {File[] files = f1.listFiles();for (File file : files) {System.out.println(file.getName());if(file.isFile()){//判断文件->变成zip_entry对象,放到压缩包中ZipEntry entry = new ZipEntry(name+"."+file.getName());zos.putNextEntry(entry);//读取文件中的数据,写到压缩包FileInputStream fis = new FileInputStream(file);int len;byte[] buffer = new byte[1024];while ((len = fis.read(buffer)) > 0) {zos.write(buffer, 0, len);}fis.close();zos.closeEntry();}else {shu15(file, zos, name+"\\"+file.getName());}}}
}

十一 Commons-io/Hutool

Commons-io是apache开源基金组织提供的一组有关IO操作的开源工具包。

2

实用网址:

Hutool🍬一个功能丰富且易用的Java工具库,涵盖了字符串、数字、集合、编码、日期、文件、IO、加密、数据库JDBC、JSON、HTTP客户端等功能。

入门和安装 (hutool.cn)

相关文章:

JAVA-IO

目录 IO流 一 字节流 1 FileOutStream 1 书写&#xff1a; 2 换行书写与续写&#xff1a; 2 FileInputStream 1 读取数据 2 循环读取&#xff1a; 二 字符流 1 FileReader 1 空参的read()方法读取数据&#xff1a; 2 有参的read()方法读取数据&#xff1a; 3 指定字…...

动态系统特征分析:特征向量、特征值、频率与阻尼比、参与因子计算方法

特征值和特征向量在动态系统分析中是核心工具&#xff0c;广泛用于电力系统小信号稳定性、机械系统模态分析等领域。以下详细介绍计算方法及应用。 1. 求解特征值与特征向量 对于一个 n n n\times n nn的系统矩阵 A A A&#xff1a; 右特征向量与特征值 特征值( λ \lambd…...

乐鑫发布 esp-iot-solution v2.0 版本

今天&#xff0c;乐鑫很高兴地宣布&#xff0c;esp-iot-solution v2.0 版本已经发布&#xff0c;release/v2.0 分支下的正式版本组件将为用户提供为期两年的 Bugfix 维护&#xff08;直到 2027.01.25 ESP-IDF v5.3 EOL&#xff09;。该版本将物联网开发中常用的功能进行了分类整…...

动态代理如何加强安全性

在当今这个信息爆炸、网络无孔不入的时代&#xff0c;我们的每一次点击、每一次浏览都可能留下痕迹&#xff0c;成为潜在的安全隐患。如何在享受网络便利的同时&#xff0c;有效保护自己的隐私和信息安全&#xff0c;成为了每位网络使用者必须面对的重要课题。动态代理服务器&a…...

Flutter 之 InheritedWidget

InheritedWidget 是 Flutter 框架中的一个重要类&#xff0c;用于在 Widget 树中共享数据。它是 Flutter 中数据传递和状态管理的基础之一。通过 InheritedWidget&#xff0c;你可以让子 Widget 在不需要显式传递数据的情况下&#xff0c;访问祖先 Widget 中的数据。这种机制对…...

AI 助力开发新篇章:云开发 Copilot 深度体验与技术解析

本文 一、引言&#xff1a;技术浪潮中的个人视角1.1 AI 和低代码的崛起1.2 为什么选择云开发 Copilot&#xff1f; 二、云开发 Copilot 的核心功能解析2.1 自然语言驱动的低代码开发2.1.1 自然语言输入示例2.1.2 代码生成的模块化支持 2.2 实时预览与调整2.2.1 实时预览窗口功能…...

MyBatis-Plus介绍及基本使用

文章目录 概述介绍MyBatis-Plus 常用配置分页插件配置类注解配置 快速入门maven 依赖编写配置文件编写启动类编写 MybatisPlus 配置类 代码生成器&#xff1a;MybatisPlusGeneratormaven依赖代码生成器核心类 概述 介绍 MyBatis-Plus&#xff08;简称 MP&#xff09;是一个 M…...

SpringBoot 整合 Avro 与 Kafka

优质博文&#xff1a;IT-BLOG-CN 【需求】&#xff1a;生产者发送数据至 kafka 序列化使用 Avro&#xff0c;消费者通过 Avro 进行反序列化&#xff0c;并将数据通过 MyBatisPlus 存入数据库。 一、环境介绍 【1】Apache Avro 1.8&#xff1b;【2】Spring Kafka 1.2&#xf…...

支持JT1078和GB28181的流媒体服务器-LKM启动配置文件参数说明

流媒体服务器地址&#xff1a;https://github.com/lkmio/lkm GB28181信令&#xff0c;模拟多个国标设备工具&#xff1a;https://github.com/lkmio/gb-cms 文章目录 gop_cachegop_buffer_sizeprobe_timeoutwrite_timeoutmw_latencylisten_ippublic_ipidle_timeoutreceive_timeo…...

什么是隐式类型转换?隐式类型转换可能带来哪些问题? 显式类型转换(如强制类型转换)有哪些风险?

C 中的隐式类型转换 定义&#xff1a;在 C 中&#xff0c;隐式类型转换是指由编译器自动执行的类型转换&#xff0c;不需要程序员显式地进行操作。这种转换在很多情况下会自动发生&#xff0c;比如在表达式求值、函数调用传参等过程中。常见场景 算术运算中的转换&#xff1a;…...

量化交易新利器:阿布量化(AbuQuant)——金融研究者的得力助手

&#x1f680; 量化交易新利器&#xff1a;阿布量化&#xff08;AbuQuant&#xff09;——金融研究者的得力助手 &#x1f680; 文章目录 &#x1f680; 量化交易新利器&#xff1a;阿布量化&#xff08;AbuQuant&#xff09;——金融研究者的得力助手 &#x1f680;&#x1f3…...

UI设计从入门到进阶,全能实战课

课程内容&#xff1a; ├── 【宣导片】从入门到进阶!你的第一门UI必修课!.mp4 ├── 第0课&#xff1a;UI知识体系梳理 学习路径.mp4 ├── 第1课&#xff1a;IOS设计规范——基础规范与切图.mp4 ├── 第2课&#xff1a;IOS新趋势解析——模块规范与设计原则(上).mp4…...

Uniapp自动调整元素高度

获取设备的像素 如果你想让元素的高度相对于整个屏幕的高度占用一定的比例&#xff0c;可以通过获取屏幕的高度&#xff0c;然后计算出你想要的比例来设置元素的高度。以下是如何实现的示例&#xff1a; <script setup> import { ref, onMounted } from vue;// 定义一个…...

软考高项经验分享:我的备考之路与实战心得

软考&#xff0c;尤其是信息系统项目管理师&#xff08;高项&#xff09;考试&#xff0c;对于众多追求职业提升与专业认可的人士来说&#xff0c;是一场充满挑战与机遇的征程。我在当年参加软考高项的经历&#xff0c;可谓是一波三折&#xff0c;其中既有成功的喜悦&#xff0…...

安全关系型数据库查询新选择:Rust 语言的 rust-query 库深度解析

在当今这个数据驱动的时代&#xff0c;数据库作为信息存储和检索的核心组件&#xff0c;其重要性不言而喻。然而&#xff0c;对于开发者而言&#xff0c;如何在保证数据安全的前提下&#xff0c;高效地进行数据库操作却是一项挑战。传统的 SQL 查询虽然强大&#xff0c;但存在诸…...

《C++ 模型训练之早停法:有效预防过拟合的关键策略》

在 C 模型开发的复杂世界里&#xff0c;过拟合犹如一个潜藏的陷阱&#xff0c;常常使我们精心构建的模型在实际应用中表现大打折扣。而早停法&#xff08;Early Stopping&#xff09;作为一种行之有效的策略&#xff0c;能够帮助我们及时察觉模型训练过程中的异常&#xff0c;避…...

5.11【数据库】第一次实验

民宿预定&#xff0c;至少有不同的民宿&#xff0c;民宿下面有不同的房间&#xff08;面积&#xff0c;房间编号&#xff09; 房间类型&#xff0c;单价&#xff0c; 可预订以及不可预订 游客信息 订单信息 公司有很多课程&#xff0c; 学生&#xff0c;课程 每位学生每期…...

【CSS in Depth 2 精译_062】第 10 章 CSS 中的容器查询(@container)概述 + 10.1 容器查询的一个简单示例

当前内容所在位置&#xff08;可进入专栏查看其他译好的章节内容&#xff09; 【第十章 CSS 容器查询】 ✔️ 10.1 容器查询的一个简单示例 ✔️ 10.1.1 容器尺寸查询的用法 ✔️ 10.2 深入理解容器10.3 与容器相关的单位10.4 容器样式查询的用法10.5 本章小结 文章目录 第 10…...

蓝桥杯每日真题 - 第23天

题目&#xff1a;&#xff08;直线&#xff09; 题目描述&#xff08;12届 C&C B组C题&#xff09; 解题思路&#xff1a; 题目理解: 在平面直角坐标系中&#xff0c;从给定的点集中确定唯一的直线。 两点确定一条直线&#xff0c;判断两条直线是否相同&#xff0c;可通过…...

# Vue 入门级教程三

在前两篇 Vue 入门教程中&#xff0c;我们已经熟悉了 Vue 的基础语法、数据绑定、指令以及组件化开发等核心概念。在本教程中&#xff0c;我们将进一步探索 Vue 的高级特性&#xff0c;包括过滤器、自定义指令、过渡效果以及 Vue 与后端数据交互等内容&#xff0c;让你能够构建…...

hint: Updates were rejected because the tip of your current branch is behind!

问题 本地仓库往远段仓库推代码时候提示&#xff1a; error: failed to push some refs to 192.168.2.1:java-base/java-cloud.git hint: Updates were rejected because the tip of your current branch is behind! refs/heads/master:refs/heads/master [rejected] (…...

PHP 方头像转为圆图

业务需要把创建海报上的用户头像由方形转为圆形&#xff0c;前端的样式设置不能用。 故采用GD的函数来对方图进行裁剪处理为圆图。 目录 裁剪函数 本地图片 远程图片 效果 参考文章 总结 裁剪函数 从网上找的一个裁剪图片的函数。 代码如下&#xff1a; /* * 将图片切…...

centos 7 离线安装postgis插件

前一段时间记录了下如何在centos7中离线安装postgresql&#xff0c;因为工作需要&#xff0c;我不仅要安装postgresql&#xff0c;还需要安装postgis插件&#xff0c;这篇文章记录下postgis插件的安装过程。 1. 安装前的参考 如下的链接都是官网上的链接&#xff0c;对你安装p…...

pyinstaller打包的时候将ffmpeg也加进包中(包括打包文件夹的方法)

在使用 PyInstaller 打包包含 pydub 的 Python 应用程序时&#xff0c;由于 pydub 需要依赖 ffmpeg&#xff0c;你需要确保 ffmpeg 被正确包含进打包后的程序。以下是操作步骤&#xff1a; 1. 准备 ffmpeg 首先&#xff0c;确保你已经下载并安装了 ffmpeg。可以通过以下方式获取…...

JVM面试知识点1

内存结构&#xff08;掌握内存结构划分、熟知各区域结构功能&#xff09; 经典的JVM内存结构&#xff1a; 按照线程是否共享来划分&#xff1a; Heap (堆区&#xff09; 1. 堆区的介绍 堆是 OOM 故障最主要的发生区域。它是内存区域中最大的一块区域&#xff0c;被所有线程共…...

wordpress

2024年自己建网站的步骤&#xff0c;新手自学建站教程 – 奶爸建站笔记 超详细图解&#xff1a;从 0 搭建一个个人网站&#xff0c;也太简单了吧 - 王一白 - 博客园 如何使用插件或者自定义页面创建一个WordPress着陆页 - 闪电博...

Day33 动态规划part02

62.不同路径 本题大家掌握动态规划的方法就可以。 数论方法 有点非主流,很难想到。 代码随想录 视频讲解:动态规划中如何初始化很重要!| LeetCode:62.不同路径_哔哩哔哩_bilibili class Solution {public int uniquePaths(int m, int n) {int dp[][] = new int[m][n];//初…...

渗透测试之Web基础之Linux病毒编写——泷羽sec

声明&#xff1a; 学习视频来自B站UP主泷羽sec,如涉及侵权马上删除文章。本文只涉及学习内容,其他的都与本人无关,切莫逾越法律红线,否则后果自负 泷羽sec的个人空间-泷羽sec个人主页-哔哩哔哩视频 (bilibili.com)https://space.bilibili.com/350329294 导读&#xff1a; 时刻…...

jmeter基础07_组件的层级

课程大纲 1. 优先级/执行顺序&#xff08;一般情况&#xff09; 同级组件&#xff1a;按组件先后顺序执行。如&#xff1a;同一层的线程组、同一层的http请求。 上下级组件&#xff1a;先执行外层&#xff08;上级&#xff09;&#xff0c;再执行内层&#xff08;下级&#xff…...

Nginx反向代理和负载均衡配置

一、疑问 在苍穹外卖里&#xff0c;浏览器发送的请求&#xff0c;比如登录&#xff0c;其url为http://localhost/api/employee/login&#xff0c; 而后端的路径是http://localhost:8080/admin/employee/login 两者不一致&#xff0c;数据是如何准确传输的呢&#xff1f; 二、…...

涟源网站seo/济南市新闻最新消息

前言&#xff1a;之前公司一直使用svn作为版本管理工具&#xff0c;用习惯了svn后来切换git后就感觉很不方便&#xff0c;很多地方都要用命令完成。在网上查到很多git相关的操作&#xff0c;都是使用命令操作的&#xff0c;明明windows上安装了TortoiseGit都界面化了&#xff0…...

sns电商网站/深圳seo关键词优化

aoshouyi新兵答主05-30TA获得超过1029个赞1 引言电力系统继电保护是保证电力系统安全运行、提高经济效益的有效技术。计算机控制技术成功运用到电力系统继电保护中,使得未来继电保护技术发展趋势具有计算机化、网络化、智能化等特点。我国继电保护学科、技术、继电器制造和人才…...

php做网站需要mysql么/交换链接是什么意思

上次我们学习了Vue.js的基础&#xff0c;并且通过综合的小实例进一步的熟悉了Vue.js的基础应用。今天我们就继续讲讲Vue.js的组件&#xff0c;更加深入的了解Vue,js的使用。首先我们先了解一下什么是Vue.js的组件&#xff0c;组件其实就是页面组成的一部分&#xff0c;它是一个…...

大连网站建设服务/快点tv下载安装

Mybaits-注解开发 文章目录 系列文章目录前言一、pandas是什么&#xff1f;二、使用步骤 1.引入库2.读入数据总结普通注解开发 提示&#xff1a;这里可以添加本文要记录的大概内容&#xff1a; 例如&#xff1a;随着人工智能的不断发展&#xff0c;机器学习这门技术也越来越重…...

免费发广告网站/百度网络优化

一、docker常用命令 显示本地的镜像&#xff1a; docker images显示所有容器&#xff1a; docker ps -a启动某个容器&#xff1a; docker start [某个container]进入某个已启动的容器&#xff1a; docker attach [已经启动的某个container]删除某个容器 docker rm [conta…...

行业网站建设方案/青岛官网优化

链式栈是一种数据存储结构,可以通过单链表的方式来实现,使用链式栈的优点在于它能够克服用数组实现的顺序栈空间利用率不高的特点,但是需要为每个栈元素分配额外的指针空间用来存放指针域。 下面我们使用模板实现一个简单链式栈: StackNode.h template<typename Type&g…...