一.IO
(一)IO概述
我们把数据的传输,可以看做是一种数据的流动,按照流动的方向,以内存为基准,分为输入input
和输出output
,即流向内存是输入流,流出内存的输出流。
Java中I/O操作主要是指使用java.io
包下的内容,进行输入、输出操作。输入也叫做读取数据,输出也叫做作写出数据。
(二)IO的分类
根据数据的流向分为:输入流和输出流。
- 输入流 :把数据从
其他设备
上读取到内存
中的流。 - 输出流 :把数据从
内存
中写出到其他设备
上的流。
根据数据的类型分为:字节流和字符流。
- 字节流 :以字节为单位,读写数据的流。
- 字符流 :以字符为单位,读写数据的流。
(三)顶级父类们
输入流 | 输出流 | |
---|---|---|
字节流 | 字节输入流InputStream | 字节输出流OutputStream |
字符流 | 字符输入流 Reader |
字符输出流 Writer |
二.字节流
(一)一切皆为字节
一切文件数据(文本、图片、视频等)在存储时,都是以二进制数字的形式保存,都是一个一个的字节,那么传输时一样如此。所以,字节流可以传输任意文件数据。在操作流的时候,我们要时刻明确,无论使用什么样的流对象,底层传输的始终为二进制数据。
(二)字节输入流【InputStream】
java.io.InputStream
抽象类是表示字节输入流的所有类的超类,可以读取字节信息到内存中。它定义了字节输入流的基本共性功能方法。
-
public void close()
:关闭此输入流并释放与此流相关联的任何系统资源。 -
public abstract int read()
: 从输入流读取数据的下一个字节。 -
public int read(byte[] b)
: 从输入流中读取一些字节数,并将它们存储到字节数组b
中 。
小贴士:
close方法,当完成流的操作时,必须调用此方法,释放系统资源。
(三)FileInputStream类
java.io.FileInputStream
类是文件输入流,从文件中读取字节。
1.构造方法
-
FileInputStream(File file)
: 通过打开与实际文件的连接来创建一个FileInputStream
,该文件由文件系统中的File
对象file
命名。 -
FileInputStream(String name)
: 通过打开与实际文件的连接来创建一个FileInputStream
,该文件由文件系统中的路径名name
命名。
当你创建一个流对象时,必须传入一个文件路径。该路径下,如果没有该文件,会抛出FileNotFoundException
。
2.普通方法
① 每次读取一个字节:read
方法,每次可以读取一个字节的数据,提升为int类型,读取到文件末尾,返回-1
。
FileInputStream读取字节代码:
public class FileInputStreamTest {
public static void main(String[] args) {
try {
// 1.创建FileInputStream对象,构造方法中绑定要读取的数据源
FileInputStream fis = new FileInputStream("code1/src/cn/cxy/demo22/test5/1.txt");
FileInputStream fis2 = new FileInputStream(new File("code1/src/cn/cxy/demo22/test5/2.txt"));
int len;
// 2.使用FileInputStream对象中的方法read,读取文件
// ① fis.read():读取一个字节
// ② len = fis.read():把读取到的字节赋值给变量len
// ③ (len = fis.read())!=-1:判断变量len是否不等于-1
while ((len = fis.read()) != -1) {
System.out.print((char) len);
}
System.out.println();
while ((len = fis2.read()) != -1) {
System.out.print((char) len);
}
// 3.释放资源
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
1.txt
2.txt
运行结果:
小贴士:
- 虽然读取了一个字节,但是会自动提升为int类型。
- 流操作完毕后,必须释放系统资源,调用close方法。
② 使用字节数组每次读取多个字节:read(byte[] b)
,每次读取b的长度个字节到数组中,返回读取到的有效字节个数,读取到末尾时,返回-1
。
使用字节数组每次读取多个字节代码:
public class FileInputStreamTest {
public static void main(String[] args) {
try {
// 1.创建FileInputStream对象,构造方法中绑定要读取的数据源
FileInputStream fis = new FileInputStream("code1/src/cn/cxy/demo22/test6/1.txt");
FileInputStream fis2 = new FileInputStream(new File("code1/src/cn/cxy/demo22/test6/2.txt"));
byte[] bytes = new byte[1024];
int len;
// 2.使用FileInputStream对象中的方法read,读取文件
// ① fis.read(bytes):读取多个字节
// ② len = fis.read(bytes):把每次读取的有效字节个数赋值给变量len
// ③ (len = fis.read(bytes))!=-1:判断变量len是否不等于-1
while ((len = fis.read(bytes)) != -1) {
System.out.print(new String(bytes,0,len));
}
System.out.println();
while ((len = fis2.read(bytes)) != -1) {
System.out.print(new String(bytes,0,len));
}
// 3.释放资源
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
1.txt
2.txt
运行结果:
小贴士:
使用数组读取,每次读取多个字节,减少了系统间的IO操作次数,从而提高了读写的效率,建议开发中使用。
(四)字节输出流【OutputStream】
java.io.OutputStream
抽象类是表示字节输出流的所有类的超类,将指定的字节信息写出到目的地。它定义了字节输出流的基本共性功能方法。
-
public void close()
:关闭此输出流并释放与此流相关联的任何系统资源。 -
public void flush()
:刷新此输出流并强制任何缓冲的输出字节被写出。 -
public void write(byte[] b)
:将b.length
字节从指定的字节数组写入此输出流。 -
public void write(byte[] b, int off, int len)
:从指定的字节数组写入len
字节,从偏移量off
开始输出到此输出流。 -
public abstract void write(int b)
:将指定的字节输出流。
小贴士:
close方法,当完成流的操作时,必须调用此方法,释放系统资源。
(五)FileOutputStream类
java.io.FileOutputStream
类是文件输出流,用于将数据写出到文件。
1.构造方法
-
public FileOutputStream(File file)
:创建文件输出流以写入由指定的 File对象表示的文件。 -
public FileOutputStream(String name)
: 创建文件输出流以指定的名称写入文件。
当你创建一个流对象时,必须传入一个文件路径。该路径下,如果没有这个文件,会创建该文件。如果有这个文件,会清空这个文件的数据。
2.普通方法
① 输出字节:public write(int b)
方法,每次可以写出一个字节数据。
FileOutputStream输出字节代码:
public class FileOutputStreamTest {
public static void main(String[] args) {
try {
// 1.创建一个FileOutputStream对象,构造方法中传递写入数据的目的地
FileOutputStream fos = new FileOutputStream("code1/src/cn/cxy/demo22/test1/1.txt");
FileOutputStream fos2 = new FileOutputStream(new File("code1/src/cn/cxy/demo22/test1/2.txt"));
// 2.调用FileOutputStream对象中的方法write,把数据写入到文件中
fos.write(97);
fos2.write(98);
// 3.释放资源(流使用会占用一定的内存,使用完毕要把内存清空,提高程序的效率)
fos.close();
fos2.close();
System.out.println("写入成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
1.txt:
2.txt:
小贴士:
- 虽然参数为int类型四个字节,但是只会保留一个字节的信息写出。
- 流操作完毕后,必须释放系统资源,调用
close
方法。
② 输出字节数组:public write(byte[] b)
方法,每次可以输出数组中的数据。
FileOutputStream输出字节数组代码:
public class FileOutputStreamTest {
public static void main(String[] args) {
try {
// 1.创建一个FileOutputStream对象,构造方法中传递写入数据的目的地
FileOutputStream fos = new FileOutputStream(new File("code1/src/cn/cxy/demo22/test2/1.txt"));
byte[] bytes = {65, 66, 67, 68, '\r', '\n'};
byte[] bytes2 = {-28, -67, -96, 65, '\r', '\n'};
byte[] bytes3 = "你好A".getBytes();
System.out.println(Arrays.toString(bytes3));
fos.write(bytes);
fos.write(bytes2);
fos.write(bytes3);
// 3.释放资源(流使用会占用一定的内存,使用完毕要把内存清空,提高程序的效率)
fos.close();
System.out.println("写入成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
1.txt
③ 输出指定长度字节数组:
write(byte[] b, int off, int len)
,每次写出从off
索引开始,len
个字节。
FileOutputStream输出指定长度字节数组代码:
public class FileOutputStreamTest {
public static void main(String[] args) {
try {
// 1.创建一个FileOutputStream对象,构造方法中传递写入数据的目的地
FileOutputStream fos = new FileOutputStream(new File("code1/src/cn/cxy/demo22/test3/1.txt"));
// 2.调用FileOutputStream对象中的方法write,把数据写入到文件中
byte[] bytes = "你好".getBytes();
System.out.println(Arrays.toString(bytes));
fos.write(bytes, 3, 3);
// 3.释放资源(流使用会占用一定的内存,使用完毕要把内存清空,提高程序的效率)
fos.close();
System.out.println("写入成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
1.txt
3.数据追加续写构造方法
-
public FileOutputStream(File file, boolean append)
: 创建文件输出流以写入由指定的 File对象表示的文件。 -
public FileOutputStream(String name, boolean append)
: 创建文件输出流以指定的名称写入文件。
4.输出换行
- 回车符
\r
和换行符\n
:
- 回车符:回到一行的开头(return)。
- 换行符:下一行(newline)。
- 系统中的换行:
- Windows系统里,每行结尾是
回车+换行
,即\r\n
;- Unix系统里,每行结尾只有
换行
,即\n
;- Mac系统里,每行结尾是
回车
,即\r
。从 Mac OS X开始与Linux统一。
数据追加续写与输出换行代码:
public class FileOutputStreamAppend {
public static void main(String[] args) {
try {
// 1.创建一个FileOutputStream对象,构造方法中传递写入数据的目的地
FileOutputStream fos = new FileOutputStream("code1/src/cn/cxy/demo22/test4/1.txt");
FileOutputStream fos2 = new FileOutputStream(new File("code1/src/cn/cxy/demo22/test4/2.txt"));
// 2.调用FileOutputStream对象中的方法write,把数据写入到文件中
fos.write(97);
fos2.write(98);
// 3.释放资源(流使用会占用一定的内存,使用完毕要把内存清空,提高程序的效率)
fos.close();
fos2.close();
System.out.println("写入成功!");
} catch (IOException e) {
e.printStackTrace();
}
try {
// 1.创建一个FileOutputStream对象,构造方法中传递写入数据的目的地
FileOutputStream fos = new FileOutputStream("code1/src/cn/cxy/demo22/test4/1.txt", true);
FileOutputStream fos2 = new FileOutputStream(new File("code1/src/cn/cxy/demo22/test4/2.txt"), true);
// 2.调用FileOutputStream对象中的方法write,把数据写入到文件中
fos.write("\r\n".getBytes());
fos2.write("\r\n".getBytes());
fos.write(99);
fos2.write(100);
// 3.释放资源(流使用会占用一定的内存,使用完毕要把内存清空,提高程序的效率)
fos.close();
fos2.close();
System.out.println("写入成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
1.txt
2.txt
(六)字节流练习:图片复制
需求:将图片从code1\\src\\cn\\cxy\\demo22\\test7\\path1
目录复制到code1\\src\\cn\\cxy\\demo22\\test7\\path2
目录下
public class CopyImage {
public static void main(String[] args) {
try {
FileInputStream fis = new FileInputStream("code1\\src\\cn\\cxy\\demo22\\test7\\path1\\1.jpg");
FileOutputStream fos = new FileOutputStream("code1\\src\\cn\\cxy\\demo22\\test7\\path2\\1.jpg");
int len;
Long l1 = System.currentTimeMillis();
while ((len = fis.read()) != -1) {
fos.write(len);
}
Long l2 = System.currentTimeMillis();
System.out.println("图片复制完毕!");
System.out.println("使用字节输入流一次读写1个字节用时: " + (l2 - l1) / 1000.0 + "秒");
fis.close();
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
FileInputStream fis = new FileInputStream("code1\\src\\cn\\cxy\\demo22\\test7\\path1\\1.jpg");
FileOutputStream fos = new FileOutputStream("code1\\src\\cn\\cxy\\demo22\\test7\\path2\\2.jpg");
byte[] bytes = new byte[1024];
int len;
Long l1 = System.currentTimeMillis();
while ((len = fis.read(bytes)) != -1) {
fos.write(bytes,0,len);
}
Long l2 = System.currentTimeMillis();
System.out.println("图片复制完毕!");
System.out.println("使用字节输入流一次读写1024个字节用时: " + (l2 - l1) / 1000.0 + "秒");
fis.close();
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
三.字符流
当使用字节流读取文本文件时,可能会有一个小问题。就是遇到中文字符时,可能不会显示完整的字符,那是因为一个中文字符可能占用多个字节存储。所以Java提供一些字符流类,以字符为单位读写数据,专门用于处理文本文件。
(一)字符输入流【Reader】
java.io.Reader
抽象类是表示用于读取字符流的所有类的超类,可以读取字符信息到内存中。它定义了字符输入流的基本共性功能方法。
-
public void close()
:关闭此流并释放与此流相关联的任何系统资源。 -
public int read()
:从输入流读取一个字符。 -
public int read(char[] cbuf)
: 从输入流中读取一些字符,并将它们存储到字符数组cbuf
中 。
(二)FileReader类
java.io.FileReader
类是读取字符文件的便利类。构造时使用系统默认的字符编码和默认字节缓冲区。
小贴士:
字符编码:字节与字符的对应规则。
Windows系统的中文编码默认是GBK编码表。
idea中UTF-8字节缓冲区:一个字节数组,用来临时存储字节数据。
1.构造方法
-
FileReader(File file)
: 创建一个新的 FileReader ,给定要读取的File对象。 -
FileReader(String fileName)
: 创建一个新的 FileReader ,给定要读取的文件的名称。
当你创建一个流对象时,必须传入一个文件路径。类似于FileInputStream
。
构造举例,代码如下:
public class FileReaderConstructor {
public static void main(String[] args) {
try {
// 使用File对象创建流对象
File file = new File("code1/src/cn/cxy/demo22/test8/path/a.txt");
FileReader fileReader = new FileReader(file);
// 使用文件名称创建流对象
FileReader fileReader1 = new FileReader("code1/src/cn/cxy/demo22/test8/path/a.txt");
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
2.普通方法
① 读取字符:read
方法,每次可以读取一个字符的数据,提升为int
类型,读取到文件末尾,返回-1
,循环读取。
读取字符代码:
public class FileReaderTest {
public static void main(String[] args) {
try {
// 使用File对象创建流对象
File file = new File("code1/src/cn/cxy/demo22/test9/path/a.txt");
FileReader fr = new FileReader(file);
// 定义变量,保存数据
int len;
// 循环读取
while ((len = fr.read()) != -1) {
System.out.print(((char) len));
}
// 关闭资源
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
小贴士:虽然读取了一个字符,但是会自动提升为int类型。
② 使用字符数组每次读取多个字符:read(char[] cbuf)
,每次读取b的长度个字符到数组中,返回读取到的有效字符个数,读取到末尾时,返回-1
。
使用字符数组每次读取多个字符代码:
public class FileReaderTest {
public static void main(String[] args) {
try {
// 使用文件名称创建流对象
FileReader fr = new FileReader("code1/src/cn/cxy/demo22/test10/path/a.txt");
// 定义变量,保存有效字符个数
int len;
// 定义字符数组,作为装字符数据的容器
char[] cbuf = new char[1024];
// 循环读取
while ((len = fr.read(cbuf)) != -1) {
System.out.print(new String(cbuf, 0, len));
}
// 循环读取
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
(三)字符输出流【Writer】
java.io.Writer
抽象类是表示用于写出字符流的所有类的超类,将指定的字符信息写出到目的地。它定义了字节输出流的基本共性功能方法。
-
void write(int c)
写入单个字符。 -
void write(char[] cbuf)
写入字符数组。 -
abstract void write(char[] cbuf, int off, int len)
写入字符数组的某一部分,off数组的开始索引,len写的字符个数。 -
void write(String str)
写入字符串。 -
void write(String str, int off, int len)
写入字符串的某一部分,off字符串的开始索引,len写的字符个数。 -
void flush()
刷新该流的缓冲。 -
void close()
关闭此流,但要先刷新它。
(四)FileWriter类
java.io.FileWriter
用来写入字符文件的便捷类。此类的构造方法假定默认字符编码和默认字节缓冲区大小都是可接受的。
1.构造方法
-
FileWriter(File file)
: 创建一个新的 FileWriter,给定要读取的File对象。 -
FileWriter(String fileName)
: 创建一个新的 FileWriter,给定要读取的文件的名称。
当你创建一个流对象时,必须传入一个文件路径,类似于
FileOutputStream
。
- 构造举例,代码如下:
public class FileWriterConstructor {
public static void main(String[] args) {
try {
// 使用File对象创建流对象
File file = new File("code1/src/cn/cxy/demo22/test11/path/a.txt");
FileWriter fw = new FileWriter(file);
// 使用文件名称创建流对象
FileWriter fw2 = new FileWriter("code1/src/cn/cxy/demo22/test11/path/a.txt");
} catch (IOException e) {
e.printStackTrace();
}
}
}
2.普通方法
① 写出字符:write(int b)
方法,每次可以写出一个字符数据。
中文编码表中
19968(\u4E00)
对应第一个汉字:"一",40917(\u9FD5)
对应最后一个汉字:"鿕"。
写出字符代码:
public class FileWriterTest {
public static void main(String[] args) {
try {
// 使用文件名称创建流对象
FileWriter fw = new FileWriter("code1/src/cn/cxy/demo22/test12/path/a.txt");
// 写出数据
// 中文编码表中 19968(\u4E00) 对应第一个汉字:"一", 40917(\u9FD5) 对应最后一个汉字:"鿕"。
fw.write(20320); // 写出第1个字符:你
fw.write(22909); // 写出第2个字符:好
fw.write(19990); // 写出第3个字符:世
fw.write(30028); // 写出第4个字符:界
fw.write(33); // 写出第5个字符:!
fw.write(13); // 写出第6个字符:\r
fw.write(10); // 写出第7个字符:\n
fw.write(25105); // 写出第8个字符:我
fw.write(26159); // 写出第9个字符:是
fw.write(31243); // 写出第10个字符:程
fw.write(24207); // 写出第11个字符:序
fw.write(21592); // 写出第12个字符:员
fw.write(33); // 写出第13个字符:!
fw.flush();
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.txt:
小贴士:
- 虽然参数为int类型四个字节,但是只会保留一个字符的信息写出。
- 调用
flush
或close
方法前,数据只是保存到了缓冲区,并未写出到文件中。
② 利用字符数组每次写出多个字符 :write(char[] cbuf)
和 write(char[] cbuf, int off, int len)
,每次可以写出字符数组中的数据,用法类似FileOutputStream
。
利用字符数组每次写出多个字符代码:
public class FileWriterTest {
public static void main(String[] args) {
try {
// 使用文件名称创建流对象
FileWriter fw = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test13\\a.txt");
// 写出'你', '好', '世', '界', '!', '\r', '\n'
char[] chars = {'你', '好', '世', '界', '!', 13, 10};
// 写出字符数组
fw.write(chars);
// 写出从索引2开始,2个字节。索引2是'世',两个字节,也就是'世','界'
fw.write(chars, 2, 2);
// 关闭资源
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.txt:
③ 写出字符串:
write(String str)
和 write(String str, int off, int len)
,每次可以写出字符串中的数据,更为方便。
写出字符串代码:
public class FileWriterTest {
public static void main(String[] args) {
try {
// 使用文件名称创建流对象
FileWriter fw = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test14\\a.txt");
// 字符串
String msg = "你好世界!\n你好程序员!\n";
// 写出字符串:"你好世界!\n你好程序员!"
fw.write(msg);
// 写出从索引8开始,3个字节。索引8是'程',3个字节,也就是'程','序','员'。
fw.write(msg, 8, 3);
// 关闭资源
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.txt:
3.关闭和刷新
因为内置缓冲区的原因,如果不关闭输出流,无法写出字符到文件中。但是关闭的流对象,是无法继续写出数据的。如果我们既想写出数据,又想继续使用流,就需要flush
方法了。
-
flush
:刷新缓冲区,流对象可以继续使用。 -
close
:先刷新缓冲区,然后通知系统释放资源。流对象不可以再被使用了。
代码使用演示:
public class FlushAndClose {
public static void main(String[] args) {
try {
// 使用文件名称创建流对象
FileWriter fw = new FileWriter("code1/src/cn/cxy/demo22/test13/path/a.txt");
// 写出数据,通过flush
fw.write('刷'); // 写出第1个字符
fw.flush();
fw.write('新'); // 继续写出第2个字符,写出成功
fw.flush();
// 写出数据,通过close
fw.write('关'); // 写出第1个字符
fw.close();
fw.write('闭'); // 继续写出第2个字符,【报错】java.io.IOException: Stream closed
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.txt:
4. 续写和换行:
操作类似于FileOutputStream
。
public class FileWriterTest {
public static void main(String[] args) {
try {
// 使用文件名称创建流对象,可以续写数据
FileWriter fw1 = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test15\\a.txt", true);
FileWriter fw2 = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test15\\a.txt", true);
// 写出字符串
fw1.write("你好");
// 写出换行
fw1.write("\r\n");
// 写出字符串
fw1.write("世界!\n");
// 关闭资源
fw1.close();
// 写出字符串
fw2.write("你好");
// 写出换行
fw2.write("\r\n");
// 写出字符串
fw2.write("程序员!");
// 关闭资源
fw2.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.txt:
小贴士:字符流,只能操作文本文件,不能操作图片,视频等非文本文件。
当我们单纯读或者写文本文件时 使用字符流 其他情况使用字节流
四.IO异常的处理
(一)JDK7前处理
使用try...catch...finally
代码块,处理异常部分。
代码使用演示:
public class FileWriterReaderException {
public static void main(String[] args) {
// 声明变量
FileWriter fw = null;
try {
//创建流对象
fw = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test16\\a.txt");
// 写出数据:我是程序员!
fw.write("我是程序员!");
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fw != null) {
fw.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
运行结果:
a.txt:
(二)JDK7的处理
还可以使用JDK7优化后的try-with-resource
语句,该语句确保了每个资源在语句结束时关闭。所谓的资源(resource)是指在程序完成后,必须关闭的对象。
1.格式
try (创建流对象语句,如果多个,使用';'隔开) {
// 读写数据
} catch (IOException e) {
e.printStackTrace();
}
代码使用演示:
public class FileWriterReaderExceptionJDK7 {
public static void main(String[] args) {
// 创建流对象
try (FileWriter fw = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test17\\a.txt")) {
// 写出数据:你好世界!
fw.write("你好世界!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.txt:
(三)JDK9的处理
1.格式
// 普通对象
Resource resource = new Resource("resource");
// 引入方式:直接引入
try (resource) {
// 使用对象
} catch (IOException e) {
e.printStackTrace();
}
代码使用演示:
public class FileWriterReaderExceptionJDK9 {
public static void main(String[] args) throws IOException {
// 创建流对象
FileWriter fw = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test18\\a.txt");
try (fw) {
// 写出数据:你好世界!
fw.write("你好世界!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.txt:
五.属性集
(一)概述
java.util.Properties
继承于Hashtable
,来表示一个持久的属性集。它使用键值结构存储数据,每个键及其对应值都是一个字符串。该类也被许多Java类使用,比如获取系统属性时,System.getProperties
方法就是返回一个Properties
对象。
(二)Properties类
1.构造方法
-
public Properties()
:创建一个空的属性列表。
2.基本的存储方法
-
public Object setProperty(String key, String value)
: 保存一对属性。 -
public String getProperty(String key)
:使用此属性列表中指定的键搜索属性值。 -
public Set
:所有键的名称的集合。stringPropertyNames()
3.与流相关的方法
-
public void load(InputStream inStream)
: 从字节输入流中读取键值对。 -
public void load(Reader reader)
:按简单的面向行的格式从输入字符流中读取属性列表(键和元素对)。 -
public void store(OutputStream out, String comments)
:以适合使用 load(InputStream) 方法加载到 Properties 表中的格式,将此 Properties 表中的属性列表(键和元素对)写入输出流。 -
public void store(Writer writer, String comments)
:以适合使用 load(Reader) 方法的格式,将此 Properties 表中的属性列表(键和元素对)写入输出字符。
store参数:
OutputStream out
:字节输出流,不能写入中文Writer writer
:字符输出流,可以写中文String comments
:注释,用来解释说明保存的文件是做什么用的,不能使用中文,会产生乱码,默认是Unicode
编码,一般使用”空字符串
Properties使用代码:
public class PropertiesTest {
public static void main(String[] args) {
// 创建属性集对象
Properties properties = new Properties();
// 添加键值对元素
properties.setProperty("赵丽颖", "18");
properties.setProperty("迪丽热巴", "20");
properties.setProperty("古力娜扎", "25");
properties.setProperty("玛尔扎哈", "30");
// 打印属性集对象
System.out.println(properties);
try (FileWriter fw = new FileWriter("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test19\\a.properties")) {
// 写入属性集信息到文本中
properties.store(fw, "my_properties");
} catch (IOException e) {
e.printStackTrace();
}
// 创建属性集对象
Properties properties2 = new Properties();
try (FileReader fr = new FileReader("D:\\LanguageLearning\\JAVA\\IdeaProject\\practise\\code1\\src\\cn\\cxy\\demo22\\test19\\a.properties")) {
// 加载文本中信息到属性集
properties2.load(fr);
// 遍历属性集,获取所有键的集合
Set keySet = properties2.stringPropertyNames();
// 打印键值对
for (String key : keySet) {
System.out.println(key + ":" + properties2.getProperty(key));
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
运行结果:
a.properties: