- 字节缓冲流
- 编码表
- 字符流
总结:
构造方法:
成员方法:
使用步骤(重点)
- 创建FileOutputStream对象,构造方法中绑定要输出的目的地
- 创建BufferedOutputStream对象,构造方法中传递FileOutputStream对象对象,提高FileOutputStream对象效率
- 使用BufferedOutputStream对象中的方法write,把数据写入到内部缓冲区中
- 使用BufferedOutputStream对象中的方法flush,把内部缓冲区中的数据,刷新到文件中
- 释放资源(会先调用flush方法刷新数据,第4部可以省略)
案例代码:
public class BufferStreamDemo {
public static void main(String[] args) throws IOException {
//字节缓冲输出流:BufferedOutputStream(OutputStream out)
// FileOutputStream fos = new FileOutputStream("myByteStream\\bos.txt");
// BufferedOutputStream bos = new BufferedOutputStream(fos);
/*
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("myByteStream\\bos.txt"));
//写数据
bos.write("hello\r\n".getBytes());
bos.write("world\r\n".getBytes());
//释放资源
bos.close();
*/
//字节缓冲输入流:BufferedInputStream(InputStream in)
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("myByteStream\\bos.txt"));
//一次读取一个字节数据
// int by;
// while ((by=bis.read())!=-1) {
// System.out.print((char)by);
// }
//一次读取一个字节数组数据
byte[] bys = new byte[1024];
int len;
while ((len=bis.read(bys))!=-1) {
System.out.print(new String(bys,0,len));
}
//释放资源
bis.close();
}
}
案例需求:
把“E:\itcast\字节流复制图片.avi”复制到模块目录下的“字节流复制图片.avi”
步骤:
案例代码:
/*
需求:
把E:\\itcast\\字节流复制图片.avi 复制到模块目录下的 字节流复制图片.avi
思路:
1:根据数据源创建字节输入流对象
2:根据目的地创建字节输出流对象
3:读写数据,复制图片(一次读取一个字节数组,一次写入一个字节数组)
4:释放资源
四种方式实现复制视频,并记录每种方式复制视频的时间
1:基本字节流一次读写一个字节 共耗时:64565毫秒
2:基本字节流一次读写一个字节数组 共耗时:107毫秒
3:字节缓冲流一次读写一个字节 共耗时:405毫秒
4:字节缓冲流一次读写一个字节数组 共耗时:60毫秒
*/
public class CopyAviDemo {
public static void main(String[] args) throws IOException {
//记录开始时间
long startTime = System.currentTimeMillis();
//复制视频
// method1();
// method2();
// method3();
method4();
//记录结束时间
long endTime = System.currentTimeMillis();
System.out.println("共耗时:" + (endTime - startTime) + "毫秒");
}
//字节缓冲流一次读写一个字节数组
public static void method4() throws IOException {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\itcast\\字节流复制图片.avi"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("myByteStream\\字节流复制图片.avi"));
byte[] bys = new byte[1024];
int len;
while ((len=bis.read(bys))!=-1) {
bos.write(bys,0,len);
}
bos.close();
bis.close();
}
//字节缓冲流一次读写一个字节
public static void method3() throws IOException {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\itcast\\字节流复制图片.avi"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("myByteStream\\字节流复制图片.avi"));
int by;
while ((by=bis.read())!=-1) {
bos.write(by);
}
bos.close();
bis.close();
}
//基本字节流一次读写一个字节数组
public static void method2() throws IOException {
//E:\\itcast\\字节流复制图片.avi
//模块目录下的 字节流复制图片.avi
FileInputStream fis = new FileInputStream("E:\\itcast\\字节流复制图片.avi");
FileOutputStream fos = new FileOutputStream("myByteStream\\字节流复制图片.avi");
byte[] bys = new byte[1024];
int len;
while ((len=fis.read(bys))!=-1) {
fos.write(bys,0,len);
}
fos.close();
fis.close();
}
//基本字节流一次读写一个字节
public static void method1() throws IOException {
//E:\\itcast\\字节流复制图片.avi
//模块目录下的 字节流复制图片.avi
FileInputStream fis = new FileInputStream("E:\\itcast\\字节流复制图片.avi");
FileOutputStream fos = new FileOutputStream("myByteStream\\字节流复制图片.avi");
int by;
while ((by=fis.read())!=-1) {
fos.write(by);
}
fos.close();
fis.close();
}
}
总结:
总结: 字符流 = 字节流 + 编码表
编码表:
常见的编码表有那些?
ASCII(掌握): 主要包括控制字符(回车键、退格、换行键等)和
可显示字符(英文大小写字符、阿拉伯数字和西文符号)一共包含256个字符
ISO-8859-1: 拉丁码表 不包含中文
GB2312:简体中文码表
Unicode:
byte[] getBytes() : 使用平台的默认字符集将该 String编码为一系列字节
byte[] getBytes(String charsetName) : 使用指定的字符集将该 String编码为一系列字节
String(byte[] bytes) : 使用平台的默认字符集解码指定的字节数组来创建字符串
String(byte[] bytes, String charsetName) : 通过指定的字符集解码指定的字节数组来创建字符串
总结:
编码:
解码:
编码 和 解码 必须要保持一致 否则就乱码了
案例代码:
/*
编码:
byte[] getBytes():使用平台的默认字符集将该 String编码为一系列字节,将结果存储到新的字节数组中
byte[] getBytes(String charsetName):使用指定的字符集将该 String编码为一系列字节,将结果存储到新的字节数组中
解码:
String(byte[] bytes):通过使用平台的默认字符集解码指定的字节数组来构造新的 String
String(byte[] bytes, String charsetName):通过指定的字符集解码指定的字节数组来构造新的 String
后期操作文本一些数据的时候,只要出现了一些看不懂的内容,说明就是乱码了
乱码该怎么解决?
只要保证操作数据源,和目的地的编码要保持一致,就能解决乱码的问题
*/
public class StringDemo {
public static void main(String[] args) throws UnsupportedEncodingException {
//定义一个字符串
String s = "中国";
//byte[] getBytes():使用平台的默认字符集将该 String编码为一系列字节,将结果存储到新的字节数组中
//byte[] bys = s.getBytes(); //[-28, -72, -83, -27, -101, -67]
//byte[] getBytes(String charsetName):使用指定的字符集将该 String编码为一系列字节,将结果存储到新的字节数组中
// byte[] bys = s.getBytes("UTF-8"); //[-28, -72, -83, -27, -101, -67]
byte[] bys = s.getBytes("GBK"); // [-42, -48, -71, -6]
System.out.println(Arrays.toString(bys));
//String(byte[] bytes):通过使用平台的默认字符集解码指定的字节数组来构造新的 String
// String ss = new String(bys);
//String(byte[] bytes, String charsetName):通过指定的字符集解码指定的字节数组来构造新的 String
// String ss = new String(bys,"UTF-8");
String ss = new String(bys,"GBK");
System.out.println(ss);
}
}
OutputStreamWriter介绍
总结:
OutputStreamWriter 概述和作用:
如何记?
OutputStreamWriter的构造方法
如何使用?
OutputStreamWriter 和 InputStreamReader 这两个类进行转换
InputStreamReader介绍
InputStreamReader概述和作用:
如何记?
InputStreamReader的构造方法
如何使用
案例代码:
/*
InputStreamReader:是从字节流到字符流的桥梁
它读取字节,并使用指定的编码将其解码为字符
它使用的字符集可以由名称指定,也可以被明确指定,或者可以接受平台的默认字符集
OutputStreamWriter:是从字符流到字节流的桥梁
是从字符流到字节流的桥梁,使用指定的编码将写入的字符编码为字节
它使用的字符集可以由名称指定,也可以被明确指定,或者可以接受平台的默认字符集
*/
public class ConversionStreamDemo {
public static void main(String[] args) throws IOException {
// OutputStreamWriter(OutputStream out) 创建一个使用默认字符编码的OutputStreamWriter。
// OutputStreamWriter(OutputStream out, String charsetName) 创建一个使用命名字符集的OutputStreamWriter。
// FileOutputStream fos = new FileOutputStream("myCharStream\\osw.txt");
// OutputStreamWriter osw = new OutputStreamWriter(fos);
// OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("myCharStream\\osw.txt"));
// 如果不指定具体的编码,默认用的是当前IDEA中的编码
// OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("myCharStream\\osw.txt"),"UTF-8");
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("day09_code\\osw.txt"),"GBK");
osw.write("中国");
osw.close();
// InputStreamReader(InputStream in) 创建一个使用默认字符集的InputStreamReader。
// InputStreamReader(InputStream in, String charsetName) 创建一个使用命名字符集的InputStreamReader。
// 读取数据的时候,如果没有指定具体的编码,默认用的是当前IDEA中的编码
// InputStreamReader isr = new InputStreamReader(new FileInputStream("myCharStream\\osw.txt"));
InputStreamReader isr = new InputStreamReader(new FileInputStream("day09_code\\osw.txt"),"GBK");
//一次读取一个字符数据
int ch;
while ((ch=isr.read())!=-1) {
System.out.print((char)ch);
}
isr.close();
}
}
概述
FileWriter的构造方法:
FileWriter(File file) : 将输出流关联的数据目的, 以file对象的形式给出
FileWriter(File file, boolean append) : 允许尾部追加
FileWriter(String fileName) : 将输出流关联的数据目的, 以String字符串的路径给出
FileWriter(String fileName, boolean append) : 允许尾部追加
FileWriter的一般方法 :
flush与close区别
Reader概述 :
FileReader构造方法:
FileReader的成员方法:
- 使用 InputStreamReader 和 OutputStreamWriter 复制文本文件
案例需求:
把模块目录下的“ConversionStreamDemo.java” 复制到模块目录下的“Copy.java”
实现步骤
案例代码:
public class CopyFile {
public static void main(String[] args) throws IOException {
// 创建 InputStreamReader 读取源文件 day09_code\BufferStreamDemo.java
InputStreamReader isr = new InputStreamReader(new FileInputStream(new File("day09_code\\BufferStreamDemo.java")));
// 创建OutputStreamWriter 写入目的地 day09_code\copy.java
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(new File("day09_code\\copy.java")));
// 一次读取一个字符
/* int ch;
while ((ch = isr.read()) != -1) {
osw.write(ch);
}*/
// 一次读取一个字符数组
char[] chs = new char[1024];
int ch;
while ((ch = isr.read(chs)) != -1) {
osw.write(chs,0,ch);
// osw.flush();
}
// 释放资源
osw.close();
isr.close();
}
}
- 使用 FileReader 和 FileWriter 复制文本文件
案例需求:
把模块目录下的“ConversionStreamDemo.java” 复制到模块目录下的“Copy.java”
实现步骤
案例代码:
public class CopyFile2 {
public static void main(String[] args) throws IOException {
// 使用 FileReader FileWriter
FileReader isr = new FileReader(new File("day09_code\\BufferStreamDemo.java"));
FileWriter osw = new FileWriter(new File("day09_code\\copy.java"));
// 一次读取一个字符
/* int ch;
while ((ch = isr.read()) != -1) {
osw.write(ch);
}*/
// 一次读取一个字符数组
char[] chs = new char[1024];
int ch;
while ((ch = isr.read(chs)) != -1) {
osw.write(chs,0,ch);
// osw.flush();
}
// 释放资源
osw.close();
isr.close();
}
}
字符缓冲输出流 BufferedWriter(包装流)
字符缓冲输入流 BufferedReader(包装流)
案例代码:
public class BufferedStreamDemo01 {
public static void main(String[] args) throws IOException {
//BufferedWriter(Writer out)
// FileWriter fw = new FileWriter("myCharStream\\bw.txt");
// BufferedWriter bw = new BufferedWriter(fw);
// BufferedWriter bw = new BufferedWriter(new FileWriter("myCharStream\\bw.txt"));
// bw.write("hello\r\n");
// bw.write("world\r\n");
// bw.close();
//BufferedReader(Reader in)
BufferedReader br = new BufferedReader(new FileReader("myCharStream\\bw.txt"));
//一次读取一个字符数据
// int ch;
// while ((ch=br.read())!=-1) {
// System.out.print((char)ch);
// }
//一次读取一个字符数组数据
char[] chs = new char[1024];
int len;
while ((len=br.read(chs))!=-1) {
System.out.print(new String(chs,0,len));
}
br.close();
}
}
案例需求
把模块目录下的ConversionStreamDemo.java 复制到模块目录下的 Copy.java
实现步骤
public class CopyFile3 {
public static void main(String[] args) throws IOException {
BufferedReader isr = new BufferedReader(new FileReader(new File("day09_code\\BufferStreamDemo.java")));
BufferedWriter osw = new BufferedWriter(new FileWriter(new File("day09_code\\buff.java")));
// 一次读取一个字符
/* int ch;
while ((ch = isr.read()) != -1) {
osw.write(ch);
}*/
// 一次读取一个字符数组
char[] chs = new char[1024];
int ch;
while ((ch = isr.read(chs)) != -1) {
osw.write(chs,0,ch);
// osw.flush();
}
// 释放资源
osw.close();
isr.close();
}
}
public class CopyFile4 {
public static void main(String[] args) throws IOException {
/*
数据源: 原来的方式存在一个文件中
现在将数据存储在集合 或 数组
*/
// 创建 BufferedReader 和 BufferedWriter
BufferedReader br = new BufferedReader(new FileReader(new File("day09_code\\BufferStreamDemo.java")));
BufferedWriter bw = new BufferedWriter(new FileWriter(new File("day09_code\\buff1.java")));
// 使用 BufferedReader 和 BufferedWriter 特有功能复制文件
String line;
while ((line = br.readLine()) != null) {
// 一次读取一行,写数据一次写一行
bw.write(line);
// 手动换行
bw.newLine();
// 刷新
bw.flush();
}
bw.close();
br.close();
}
}
- 集合到文件
* 案例需求
把文本文件中的数据读取到集合中,并遍历集合。
要求:文件中每一行数据是一个集合元素
实现步骤
案例代码:
public class ArrayListToTxtDemo {
public static void main(String[] args) throws IOException {
//创建ArrayList集合
ArrayList<String> array = new ArrayList<String>();
//往集合中存储字符串元素
array.add("hello");
array.add("world");
array.add("java");
//创建字符缓冲输出流对象
BufferedWriter bw = new BufferedWriter(new FileWriter("myCharStream\\array.txt"));
//遍历集合,得到每一个字符串数据
for(String s : array) {
//调用字符缓冲输出流对象的方法写数据
bw.write(s);
bw.newLine();
bw.flush();
}
//释放资源
bw.close();
}
}
- 文件到集合
public static void main(String[] args) {
// 创建字符缓冲输入流对象
BufferedReader br = new BufferedReader(new FileReader("day09_code\\array.txt"));
// 创建ArrayList集合对象
ArrayList<String> list = new ArrayList<>();
// 读取文件中的内容
String line;
while ((line = br.readLine()) != null) {
// 将读取到的数据,添加到集合中
list.add(line);
}
// 释放资源
br.close();
// 遍历集合
for (String s : list) {
System.out.println(s);
}
}
- 点名器
案例需求
有一个文件里面存储了班级同学的姓名,每一个姓名占一行,要求通过程序实现随点名器
实现步骤
- 文件到集合改进版
案例需求
实现步骤
public class FileToArrayListDemo {
public static void main(String[] args) throws IOException {
//创建字符缓冲输入流对象
BufferedReader br = new BufferedReader(new FileReader("myCharStream\\students.txt"));
//创建ArrayList集合对象
ArrayList<Student> array = new ArrayList<Student>();
//调用字符缓冲输入流对象的方法读数据
String line;
while ((line = br.readLine()) != null) {
/*
line: itheima001,林青霞,30,西安
String[] strArray = line.split(",");
[0] : 学号
[1] : 姓名
[2] : 年龄 Integer.parseInt()
[3] : 居住地
*/
//把读取到的字符串数据用split()进行分割,得到一个字符串数组
String[] strArray = line.split(",");
//创建学生对象
Student s = new Student();
//把字符串数组中的每一个元素取出来对应的赋值给学生对象的成员变量值
//itheima001,林青霞,30,西安
s.setSid(strArray[0]);
s.setName(strArray[1]);
s.setAge(Integer.parseInt(strArray[2]));
s.setAddress(strArray[3]);
//把学生对象添加到集合
array.add(s);
}
//释放资源
br.close();
//遍历集合
for (Student s : array) {
System.out.println(s.getSid() + "," + s.getName() + "," + s.getAge() + "," + s.getAddress());
}
}
}