day17-缓冲流&转换流&序列化流&打印流&Properties
Posted teayear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day17-缓冲流&转换流&序列化流&打印流&Properties相关的知识,希望对你有一定的参考价值。
day17_JAVAOOP
课程目标
1. 【理解】什么是缓冲流
2. 【掌握】缓冲流的使用
3. 【理解】转换流
4. 【理解】序列化流
5. 【理解】打印流
6. 【掌握】Properties集合的使用
缓冲流
前期我们学习了基本的一些流,作为IO流的入门,今天我们要见识一些更强大的流。比如能够高效读写的缓冲流,能够转换编码的转换流,能够持久化存储对象的序列化流等等。这些功能更为强大的流,都是在基本的流对象基础之上创建而来的,就像穿上铠甲的武士一样,相当于是对基本流对象的一种增强。
缓冲流概述
缓冲流,也叫高效流,是对4个基本的`FileXxx` 流的增强,所以也是4个流,按照数据类型分类 通过定义数组的方式确实比以前一次读取一个字节的方式快很多,所以,看来有一个缓冲区还是非常好的。 既然是这样的话,那么,java开始在设计的时候,它也考虑到了这个问题,就专门提供了带缓冲区的字节类。 这种类被称为:缓冲区类(高效类) 写数据:BufferedOutputStream 读数据:BufferedInputStream 构造方法可以指定缓冲区的大小,但是我们一般用不上,因为默认缓冲区大小就足够了。 为什么不传递一个具体的文件或者文件路径,而是传递一个OutputStream对象呢? 原因很简单,字节缓冲区流仅仅提供缓冲区,为高效而设计的。但是呢,真正的读写操作还得靠基本的流对象实现。
名称 | 类 |
---|---|
字节缓冲流 | BufferedInputStream BufferedOutputStream |
字符缓冲流 | BufferedReader BufferedWriter |
缓冲流的基本原理,是在创建流对象时,会创建一个内置的默认大小的缓冲区数组,通过缓冲区读写,减少系统IO次数,从而提高读写的效率。
字节缓冲流
构造方法
方法名 | 说明 |
---|---|
public BufferedInputStream(InputStream in) | 创建一个 新的缓冲输入流。 |
public BufferedOutputStream(OutputStream out) | 创建一个新的缓冲输出流。 |
字节缓冲输出流
public class BufferedDemo
public static void main(String[] args) throws IOException
//相当于把字节流进行了一次装
//FileOutputStream fos = new FileOutputStream("a.txt");
//BufferedOutputStream bos = new BufferedOutputStream(fos);
//简单写法
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("a.txt"));
//也可以进行追加
//BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("a.txt",true));
//写一个字节
bos.write(97);
//写一个字节数组
byte[] by = 97,98,99;
bos.write(by);
bos.write("hello".getBytes());
//指定写一个字节
bos.write(by,1,2);
//关闭
bos.close();
字节缓冲输入流
public class BufferedDemo
public static void main(String[] args) throws IOException
//字节输入缓冲流
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("a.txt"));
//一次读出一个字节
int read = bis.read();
System.out.println((char)read);
//一次读出一个字节数组
byte[] by = new byte[1024];
int len;
while ((len = bis.read(by)) != -1)
System.out.println(new String(by,0,len));
字节缓冲流复制
public static void main(String[] args) throws IOException
//读
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("a.txt"));
//写
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("b.txt"));
//复制
byte[] bys = new byte[1024];
int len =0;
while((len = bis.read(bys)) != -1)
bos.write(bys,0,len);
bis.close();
bos.close();
测试
/*
* 需求:把D:\\\\工作\\\\EV已录视频\\\\01-课程介绍.mp4复制到当前项目目录下的copy.mp4中
*
* 字节流四种方式复制文件:
* 基本字节流一次读写一个字节: 共耗时:117235毫秒
* 基本字节流一次读写一个字节数组: 共耗时:156毫秒
* 高效字节流一次读写一个字节: 共耗时:1141毫秒
* 高效字节流一次读写一个字节数组: 共耗时:47毫秒
*/
public class CopyMp4Demo
public static void main(String[] args) throws IOException
long start = System.currentTimeMillis();
method1("D:\\\\工作\\\\EV已录视频\\\\01-课程介绍.mp4", "copy1.mp4");
method2("D:\\\\工作\\\\EV已录视频\\\\01-课程介绍.mp4", "copy2.mp4");
method3("D:\\\\工作\\\\EV已录视频\\\\01-课程介绍.mp4", "copy3.mp4");
method4("D:\\\\工作\\\\EV已录视频\\\\01-课程介绍.mp4", "copy4.mp4");
long end = System.currentTimeMillis();
System.out.println("共耗时:" + (end - start) + "毫秒");
// 高效字节流一次读写一个【字节数组】:
public static void method4(String srcString, String destString)
throws IOException
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(
srcString));
BufferedOutputStream bos = new BufferedOutputStream(
new FileOutputStream(destString));
byte[] bys = new byte[1024];
int len = 0;
while ((len = bis.read(bys)) != -1)
bos.write(bys, 0, len);
bos.close();
bis.close();
// 高效字节流一次读写一个【字节】:
public static void method3(String srcString, String destString)
throws IOException
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(
srcString));
BufferedOutputStream bos = new BufferedOutputStream(
new FileOutputStream(destString));
int by = 0;
while ((by = bis.read()) != -1)
bos.write(by);
bos.close();
bis.close();
// 基本字节流一次读写一个字节数组
public static void method2(String srcString, String destString)
throws IOException
FileInputStream fis = new FileInputStream(srcString);
FileOutputStream fos = new FileOutputStream(destString);
byte[] bys = new byte[1024];
int len = 0;
while ((len = fis.read(bys)) != -1)
fos.write(bys, 0, len);
fos.close();
fis.close();
// 基本字节流一次读写一个字节
public static void method1(String srcString, String destString)
throws IOException
FileInputStream fis = new FileInputStream(srcString);
FileOutputStream fos = new FileOutputStream(destString);
int by = 0;
while ((by = fis.read()) != -1)
fos.write(by);
fos.close();
fis.close();
字符缓冲流
构造方法
方法名 | 说明 |
---|---|
public BufferedReader(Reader in) | 创建一个 新的缓冲输入流。 |
public BufferedWriter(Writer out) | 创建一个新的缓冲输出流。 |
字符缓冲输出流
public static void main(String[] args) throws IOException
//字符输出流
BufferedWriter bw = new BufferedWriter(new FileWriter("c.txt"));
bw.write(97);
bw.write("hello");
char[] chs = 'j','a','v','a',;
bw.write(chs);
bw.close();
字符缓冲输入流
public static void main(String[] args) throws IOException
//字符输入流
BufferedReader br = new BufferedReader(new FileReader("c.txt"));
//读一个字符
int read = br.read();
System.out.println(read);
//循环读
int ch;
while ( (ch = br.read()) != -1)
System.out.print((char)ch);
//循环读字符数组
char[] c = new char[1024];
int ch2;
while ( (ch2 = br.read(c)) != -1)
System.out.print(new String(c,0,ch2));
字符流缓冲流复制
/*
* 需求:把当前项目目录下的a.txt内容复制到当前项目目录下的b.txt中
*
* 数据源:
* a.txt -- 读取数据 -- 字符转换流 -- InputStreamReader -- FileReader -- BufferedReader
* 目的地:
* b.txt -- 写出数据 -- 字符转换流 -- OutputStreamWriter -- FileWriter -- BufferedWriter
*/
public class CopyFileDemo
public static void main(String[] args) throws IOException
// 封装数据源 读
BufferedReader br = new BufferedReader(new FileReader("a.txt"));
// 封装目的地 写
BufferedWriter bw = new BufferedWriter(new FileWriter("b.txt"));
// 两种方式其中的一种一次读写一个字符数组
char[] chs = new char[1024];
int len = 0;
while ((len = br.read(chs)) != -1)
bw.write(chs, 0, len);
bw.flush();
// 释放资源
bw.close();
br.close();
字符缓冲流特有方法
类名 | 方法名 | 说明 |
---|---|---|
BufferedReader | public String readLine() | 一次读取一行文字 |
BufferedWriter | public void newLine() | 写一行行分隔符,由系统属性定义符号 |
/*
* 字符缓冲流的特殊方法:
* BufferedWriter:
* public void newLine():根据系统来决定换行符 写入时换行
*/
public static void main(String[] args) throws IOException
// 创建字符缓冲输出流对象
BufferedWriter bw = new BufferedWriter(new FileWriter("a.txt"));
for (int x = 0; x < 10; x++)
bw.write("hello" + x);
// bw.write("\\r\\n");//之前换行做法
bw.newLine();//现在换行做法
bw.flush();
bw.close();
/*
* 字符缓冲流的特殊方法:
* BufferedReader:
* public String readLine():一次读取一行数据
* 包含该行内容的字符串,不包含任何行终止符(不包含换行),如果已到达流末尾,则返回 null
*/
public static void main(String[] args) throws IOException
// 创建字符缓冲输入流对象
BufferedReader br = new BufferedReader(new FileReader("bw2.txt"));
// String line = br.readLine();//一次读取一行数据
// System.out.println(line);
// 最终版代码
String line = null;
while ((line = br.readLine()) != null)
System.out.println(line);
//释放资源
br.close();
转换流
OutputStreamWriter(OutputStream out):根据默认编码把字节流的数据转换为字符流
OutputStreamWriter(OutputStream out,String charsetName):根据指定编码把字节流数据转换为字符流
把字节流转换为字符流。
转换流 <==> 字符流 = 字节流 + 编码表。
字符编码和字符集
字符编码
计算机中储存的信息都是用二进制数表示的,而我们在屏幕上看到的数字、英文、标点符号、汉字等字符是二进制数转换之后的结果。按照某种规则,将字符存储到计算机中,称为编码 。反之,将存储在计算机中的二进制数按照某种规则解析显示出来,称为解码 。比如说,按照A规则存储,同样按照A规则解析,那么就能显示正确的文本符号。反之,按照A规则存储,再按照B规则解析,就会导致乱码现象。
编码:字符(能看懂的)–字节(看不懂的)
解码:字节(看不懂的)–>字符(能看懂的)
-
字符编码
Character Encoding
: 就是一套自然语言的字符与二进制数之间的对应规则。编码表:生活中文字和计算机中二进制的对应规则
字符集
- 字符集
Charset
:也叫编码表。是一个系统支持的所有字符的集合,包括各国家文字、标点符号、图形符号、数字等。
计算机要准确的存储和识别各种字符集符号,需要进行字符编码,一套字符集必然至少有一套字符编码。常见字符集有ASCII字符集、GBK字符集、Unicode字符集等。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-P0QAh24O-1672536952878)(assets/1_charset.jpg)]
可见,当指定了编码,它所对应的字符集自然就指定了,所以编码才是我们最终要关心的。
常见的字符集
-
ASCII字符集 :
- ASCII(American Standard Code for Information Interchange,美国信息交换标准代码)是基于拉丁字母的一套电脑编码系统,用于显示现代英语,主要包括控制字符(回车键、退格、换行键等)和可显示字符(英文大小写字符、阿拉伯数字和西文符号)。
- 基本的ASCII字符集,使用7位(bits)表示一个字符,共128字符。ASCII的扩展字符集使用8位(bits)表示一个字符,共256字符,方便支持欧洲常用字符。
-
ISO-8859-1字符集:
- 拉丁码表,别名Latin-1,用于显示欧洲使用的语言,包括荷兰、丹麦、德语、意大利语、西班牙语等。
- ISO-8859-1使用单字节编码,兼容ASCII编码
-
GBxxx字符集:
- GB就是国标的意思,是为了显示中文而设计的一套字符集。
- GB2312:简体中文码表。一个小于127的字符的意义与原来相同。但两个大于127的字符连在一起时,就表示一个汉字,这样大约可以组合了包含7000多个简体汉字,此外数学符号、罗马希腊的字母、日文的假名们都编进去了,连在ASCII里本来就有的数字、标点、字母都统统重新编了两个字节长的编码,这就是常说的"全角"字符,而原来在127号以下的那些就叫"半角"字符了。
- GBK:最常用的中文码表。是在GB2312标准基础上的扩展规范,使用了双字节编码方案,共收录了21003个汉字,完全兼容GB2312标准,同时支持繁体汉字以及日韩汉字等。
- GB18030:最新的中文码表。收录汉字70244个,采用多字节编码,每个字可以由1个、2个或4个字节组成。支持中国国内少数民族的文字,同时支持繁体汉字以及日韩汉字等。
-
Unicode字符集 :
- Unicode编码系统为表达任意语言的任意字符而设计,是业界的一种标准,也称为统一码、标准万国码。
- 它最多使用4个字节的数字来表达每个字母、符号,或者文字。有三种编码方案,UTF-8、UTF-16和UTF-32。最为常用的UTF-8编码。
- UTF-8编码,可以用来表示Unicode标准中任何字符,它是电子邮件、网页及其他存储或传送文字的应用中,优先采用的编码。互联网工程工作小组(IETF)要求所有互联网协议都必须支持UTF-8编码。所以,我们开发Web应用,也要使用UTF-8编码。它使用一至四个字节为每个字符编码,编码规则:
- 128个US-ASCII字符,只需一个字节编码。
- 拉丁文等字符,需要二个字节编码。
- 大部分常用字(含中文),使用三个字节编码。
- 其他极少使用的Unicode辅助字符,使用四字节编码。
/* * 计算机是如何识别什么时候该把两个字节转换为一个中文呢? * 在计算机中中文的存储分两个字节: * 第一个字节肯定是负数。 * 第二个字节常见的是负数,可能有正数。但是没影响。 */ public static void main(String[] args) // String s = "abcde"; //[97, 98, 99, 100, 101] 正数不拼 String s = "我爱你中国";//因为当前我的编码是utf-8 是占三个字节的 // [-26, -120, -111, -25, -120, -79, -28, -67, -96, -28, -72, -83, -27, -101, -67] 负数拼 byte[] bys = s.getBytes(); System.out.println(Arrays.toString(bys));
InputStreamReader类
转换流
java.io.InputStreamReader
,是Reader的子类,是从字节流到字符流的桥梁。它读取字节,并使用指定的字符集将其解码为字符。它的字符集可以由名称指定,也可以接受平台的默认字符集。
构造方法
方法名 | 说明 |
---|---|
InputStreamReader(InputStream in) | 创建一个使用默认字符集的字符流。 |
InputStreamReader(InputStream in, String charsetName) | 创建一个指定字符集的字符流。 |
InputStreamReader isr = new InputStreamReader(new FileInputStream("in.txt"));
InputStreamReader isr2 = new InputStreamReader(new FileInputStream("in.txt") , "GBK");
指定编码读取文件
public class ReaderDemo2
public static void main(String[] args) throws IOException
// 创建对象
// InputStreamReader isr = new InputStreamReader(new FileInputStream(
// "osw.txt"));
// InputStreamReader isr = new InputStreamReader(new FileInputStream(
// "osw.txt"), "GBK");
InputStreamReader isr = new InputStreamReader(new FileInputStream(
"osw.txt"), "UTF-8");
// 读取数据
// 一次读取一个字符
int ch = 0;
while ((ch = isr.read()) != -1)
System.out.print((char) ch);
// 释放资源
isr.close();
OutputStreamWriter类
转换流
java.io.OutputStreamWriter
,是Writer的子类,是从字符流到字节流的桥梁。使用指定的字符集将字符编码为字节。它的字符集可以由名称指定,也可以接受平台的默认字符集
构造方法
方法名 | 说明 |
---|---|
OutputStreamWriter(OutputStream in) | 创建一个使用默认字符集的字符输出流。 |
OutputStreamWriter(OutputStream in, String charsetName) | 创建一个指定字符集的字符输出流。 |