Java程序设计(2021春)——第五章输入输出笔记与思考
本章概览:
异常处理简介
程序运行时,环境、操作等可能出现各种错误、故障,我们希望程序具有容错能力,给出错误信息。面向对象的程序设计里有异常处理机制,即,将程序的主要逻辑和容错处理逻辑分开,发现异常的地方不一定是处理异常的地方。
输入/输出流的概念
流:Java将信息的输入输出看作程序的流动,输出流就是将数据从程序空间输出到别的空间的通道;输入流同理。
文件读写
[TOC]
5.1.1-5.1.2 异常处理的概念
异常处理就是程序的一种容错机制,在程序运行过程中。如果遇到用户或环境的错误,程序要有能力处理这些错误,并且从错误中恢复出来继续执行,或者至少告诉用户发生了什么样的错误,并且在程序结束之前做好善后工作。
异常的基本概念
- 又称例外,是特殊的运行错误对象。
- Java中声明了很多异常类,每个异常类都代表了一种运行错误,类中包含了该运行错误的信息和处理错误的方法。
- 每当Java程序运行中发生一个可识别的运行错误时,即该错误有一个异常类与之对应时,系统都会产生一个相应的该异常类的对象,即产生一个异常。
在Java中出现异常时,处理异常的办法有两种:一种是本Java程序不处理异常,但需要声明一下不处理异常但是将异常抛出,如果整个程序不处理,就会抛出到运行环境,即Java虚拟机,然后会给出一些信息并终止程序;第二种办法是在自己的程序中捕获异常并处理异常。一般而言,第二种方式会多一些。
Java异常处理机制的优点
- 将错误处理代码从常规代码中分离出来。
- 将错误按类型和差别分组。
- 对无法预测的错误的捕获和处理。
- 克服了传统方法的错误信息有限的问题,即,可以扩展错误信息。
- 把错误传播给调用堆栈,可以让上级的调用者模块处理信息。
错误的分类
根据错误的严重程度不同,可以分为两类:
错误:
- 致命性的,程序无法处理,多数情况无法从错误中恢复并继续运行。
-
Error
类是所有错误类的父类。
异常
- 非致命性的,可编制程序捕获和处理。
-
Exception
类是所有异常类的父类。
异常的分类
非检查型异常
- 不期望程序捕获的异常,在方法中不需要声明,编译器也不进行检查。
- 都继承自
RuntimeException
。
- 不要求捕获和声明的原因:引发
RuntimeException
的操作在Java应用程序中会频繁出现。例如:若每次使用对象时,都必须编写异常处理代码来检查
null
引用,则整个应用程序很快将变成庞大的
try-catch
块;它们表示的问题不一定作为异常处理,如:可以在除法运算时检查$0$值,而不使用
ArithmeticException
&&可以在引用前测试控值等。
检查型异常
- 其它类型的异常。
- 如果被调用的方法抛出一个类型为
E
的检查型异常,那么调用者必须捕获
E
或者也声明抛出
E
(或者
E
的一个父类),对此,编译器要进行检查。
Java预定义的一些常见异常
非检查型异常
-
ArithmeticException
:整数除法中除数为$0$。
-
NullPointerException
:访问的对象还没有实例化。
-
NegativeArraySzieException
:创建数组时元素个数是负数。
-
ArrayIndexOutOfBoundsException
:访问数组元素时,数组下标越界。
检查型异常
-
ArrayStoreException
:程序试图向数组中存取错误类型的数据。
-
FileNoteFoundException
:试图存取一个并不存在的文件。
-
IOException
:通常的
I/O
错误。
例:非检查型异常——数组越界异常
public class HelloWorld {public static void main(String[] args) {int i = 0;String greetings[] = { "HelloWorld!", "No,I mean it!", "HeELLO WORLD!!" };while (i < 4) {System.out.println(greetings[i]);i++;}}}
在上述代码中,我们故意制造了数组越界,
greetings[]
数组只有三个元素但我们却访问到了第四个,以下是eclipse IDE运行结果:
HelloWorld!No,I mean it!HELLO WORLD!!Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3at HelloWorld.main(HelloWorld.java:6)
可以注意到,主方法中没有声明抛出这种异常,也没有捕获这种异常,编译器也没有进行强制性检查,即,并不要求处理/抛出这个异常。
5.1.3-5.1.5 异常的处理
检查型异常的处理
声明抛出异常
- 不在当前方法内处理异常,可以使用
throws
子句声明将异常抛出到调用方法中。
- 如果所有的方法都选择了抛出此异常,最后
JVM
(Java虚拟机)将捕获它,输出相关的错误信息,并且终止程序的运行。
捕获异常
- 使用
try{}catch{}
块,捕获所发生的异常,并进行相应的处理。
异常处理示意图
如上图,
Method1
调用了
Method2
,
Method2
调用
Method3
,
Method3
再调用
Method4
。如果在
Method4
中探测到了异常发生,不去处理这个异常,就会沿着栈的方向向上抛出,即抛给
Method4
的调用者
Method3
;
Method3
如果继续不处理这个异常就会抛给
Method2
;如果
Method2
不处理,则会继续抛给
Method1
。如果
Method1
打算处理,则应当捕获异常并且处理。
抛出异常的例子
public void openThisFile(String fileName) throws java.io.FileNotFoundException{//code for method}public void getCustomerInfo()throws java.io.FileNotFoundException{//do somethingthis.openThisFile("customer.txt");//do something}
如果在
openThisFile
中抛出了
FileNotFoundException
异常,
getCustomerInfo
将停止执行,并将此异常传送给它的调用者。
捕获异常的语法
try{statement(s)}catch(exceptiontype name){statement(s)}finally{statement(s)}
说明:
-
try
语句,其后跟有可能产生异常的代码块。
-
catch
语句,其后跟随异常处理语句,通常都要用到两个方法:
getMessage()
:返回一个字符串,对发生的异常进行描述。
printStackTrace()
:给出方法的调用序列,一直到异常的产生位置。
-
finally()
语句:不论在
try
代码段是否产生异常,
finally
后的程序代码段都会被执行,通常在这里释放内存以外的其他资源。
注意事项
如果并列有多个
catch
语句捕获多个异常,则一般的异常类型放在后面,特殊的放在前面。比如说我们需要捕获的异常,其中有超类有子类的话,那我们应该首先捕获子类类的异常,再捕获超类类型的异常。
生成异常对象
三种方式
- 由Java虚拟机生成。
- 由Java类库中的某些类生成。
- 在自己写的程序中生成和抛出异常对象。
抛出异常对象都是通过**
throw
语句来实现,异常对象必须是**
Throwable
或其子类的实例:
-
throw new ThrowableObject();
-
ArithmeticException e = new ArithmeticException();throw e;
例:生成异常对象
class ThrowTest{public static void main(String[] args){try{throw new ArithmeticException();}catch(ArithmeticException ae){System.out.println(ae);}try{throw new ArrayIndexOutOfBoundsException();}catch(ArrayIndexOutOfBoundsException ai){System.out.println(ai);}try{throw StringIndexOutOfBoundsException();}catch(StringIndexOutOfBoundsException si){System.out.println(si);}}}
以上可见,我们可以主动生成异常对象,然后抛出。
运行结果:
java.lang.ArithmeticExceptionjava.lang.ArrayIndexOutOfBoundsExceptionjava.lang.StringIndexOutOfBoundsException
声明自己的异常类
-
自定义的所有异常类都必须是**
Exception
**的子类。
-
声明语法如下:
public class MyExceptionName extends SuperclassOfMyException{public MyExceptionName(){super("Some string explaining exception");//调用超类生成方法}}
5.2 输入输出流的概念
在Java中,将信息的输入输出抽象为信息的流动,输入流是信息从程序空间之外的地方流入程序空间内的“通道”;输出流是将信息从程序空间输送到程序空间之外。
预定义的
I/O
流类
从流的方向划分
- 输入流
- 输出流
从流的分工划分
- 节点流:真正访问文件,进行输入输出操作的流。
- 处理流:在节点流的基础上,对信息进行加工、转换、处理等操作的流。
从流的内容划分(
java.io
包的顶级层次结构)
- 面向字符的流:专门用于处理字符数据。
- 面向字节的流:用于一般目的的输入输出。
我们用于读写的流都要继承自这四个超类。
面向字符的流
面向字符的流针对字符数据的特点专门进行了优化,提供专门针对字符的处理。
-
源或目标通常是文本文件。
-
实现内部格式和文本文件中的外部格式之间的转换。
内部格式:
16-bit char
数据类型
外部格式:
UTF(Universal character set Transformation Format)
,被很多人称为
Universal Text Format
;包括
ASCII
码和非
ASCII
码,比如,斯拉夫(Cyrillic)字符,希腊字符,亚洲字符等。
面向字符的抽象流类——
Reader
和
Writer
-
java.io
包中所有字符流的抽象超类。
-
Reader
提供了输入字符的
API
。
-
Writer
提供了输出字符的
API
。
-
它们的子类又可以分为两大类
节点流:从数据源读入数据或往目的地写出数据。
处理流:对数据执行某种处理。
-
多数程序使用这两个抽象类的一系列子类来读入/写出文本信息
例如:
FileReader/FileWriter
用来读/写文本文件。
面向字符的流
阴影部分为节点流,其他为处理流
面向字节的抽象流类——
InputStream
和
OutputStream
面向字节的流是用来处理非文本文件的输入输出的。事实上,大多数文件都不是文本文件,如声音、视频等等。即使有一些数据既可以存储为文本,又可以存储为二进制,存储为二进制都要节省空间很多,而且,传输二进制文件时间上也会节省。因此,当我们的数据不是给人读的或者要进行进一步处理,我们往往会选择以二进制形式输出,这样比较节省时间,在存储介质上也比较节省空间。
-
是用来处理字节流的抽象基类,程序使用这两个类的子类来读写字节信息。
-
分为两部分
节点流
处理流
标准输入输出流对象
-
System
类的静态成员变量。
-
包括
System.in
:
InputStream
类型的,代表标准输入流,默认状态对应于键盘输入。
System.out
:
PrintStream
类型的,代表标准输出流,默认状态对应于显示器输出。
System.err
:
PrintStream
类型的,代表标准错误信息输出流,默认状态对应于显示器输出。
按类型输入/输出数据
-
printf
方法
System.out.printf("%-12s is %2d long",name,l);
System.out.printf("value = %2.2F",value);
%n
是平台无关的换行标志。
-
Scanner
如果我们知道二进制文件中存放了一些数值类的数据,并且知道依次存放了什么数据,就可以用
Scanner
对象按照类型读取。
Scanner s = new Scanner(System.in);
:构造
Scanner
对象时,需要用另一个输入流做参数,因为
Scanner
不是直接访问磁盘文件进行输出的,实际上是一个处理流,对输入流读取的信息进行转换,赋予类型特征的流。
int n = s.nextInt();
:调用对象的方法。
还有下列方法:
nextByte()
、
nextDouble()
、
nextFloat()
、
nextLine()
、
nextLong
、
nextShort()
。
例:标准输入/输出重定向(复制文件)
import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.BufferedReader;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStreamReader;import java.io.PrintStream;public class Redirecting {public static void main(String[] args) throws IOException {BufferedInputStream in = new BufferedInputStream(new FileInputStream("Redirecting.java"));// 构造一个输入流备用,这个输入流直接关联到磁盘文件,此处使用java源代码PrintStream out = new PrintStream(new BufferedOutputStream(new FileOutputStream("test.out")));// 构造一个输出流对象,这个输出流对象直接关联到磁盘文件,此处随便起一个名字,text.out自然也是文本文件System.setIn(in);// 调用setIn方法,将标准输入流重新定向到inSystem.setOut(out);// 调用setOut方法,将标准输出流重新定向到outSystem.setErr(out);// 关联标准输出错误流BufferedReader br = new BufferedReader(new InputStreamReader(System.in));// 构造有缓冲的输入流,可以使输入的效率更高一些,但是BufferedReader本身并不执行读磁盘文件的操作,只是一个处理流,因此我们需要一个真正读取文件信息的节点流作为参数来构造缓冲的BufferedReader,因此将System.in作为参数传给InputStreamReader,InputStreamReader是面向字节的流和面向字符的流的桥梁。此处的System.in已经是重定向到磁盘文件的输入流了String s;while ((s = br.readLine()) != null) {System.out.println(s);//out经过了重定向,所以输出到磁盘文件}in.close();out.close();}}
5.3.1 写文本文件
例:创建文件并写入若干行文本
import java.io.*;public class FileWriterTester {public static void main(String[] args) throws IOException {// main 方法中声明抛出IO异常String fileName = "Hello.txt";//相对路径名,在当前工作文件夹下的文件FileWriter writer = new FileWriter(fileName);//创建FileWriter输出流对象writerwriter.write("Hello!\\n");writer.write("This is my first text file,\\n");writer.write("You can see how this is done.\\n");writer.write("输入一行中文也可以\\n");writer.close();//关闭文件}}
两个注意点:
- 换行符
\\n
不具有跨平台的性质,在不同平台下可能有不同的解释
- 每次运行该程序,可以发现每次删除了旧文件(Hello.txt),重新创建了Hello.txt
例:写入文本文件,处理IO异常
import java.io.FileWriter;import java.io.IOException;public class FileWriterTester {public static void main(String[] args) {String fileName = "Hello.txt";try {FileWriter writer = new FileWriter(fileName, true);writer.write("Hello!\\n");writer.write("This is my first text file,\\n");writer.write("You can see how this is done");writer.write("输入一行中文也可以\\n");writer.close();} catch (IOException iox) {System.out.println("Problem writing" + fileName);}}}
补充知识
-
FileWriter
类,参考自菜鸟教程
FileWriter(File file)
构造一个FileWriter对象。
FileWriter(File file, boolean append)
参数file:要写入数据的file对象;参数append:如果append为append,则将字节写入文件末尾处,相当于追加信息,如果append为false,则写入文件开始处。
说明
- 运行此程序,会发现在原文件内容后面又追加了重复的内容,这就是将构造方法的第二个参数append设置为true的效果。
- 如果将文件属性人为更改为只读属性,再运行本程序,就会出现IO错误,程序将转入catch块中,并给出出错信息(终端)。
BufferedWriter
类
FileWriter
和
BufferedWriter
类都用用于输出字符流,包含的方法几乎完全一样,但是
BufferedWriter
多提供了一个
newLine()
方法用于换行。
- 不同的系统对文字的换行方式不同,
newLine()
方法可以输出在当前计算机上正确的换行符。
-
BufferedWriter
为缓冲输出流,可以起到缓冲作用,提高输出效率。
例:写入文本文件,使用
BufferedWriter
import java.io.BufferedWriter;import java.io.FileWriter;import java.io.IOException;public class FileWriterTester {public static void main(String[] args) throws IOException {String fileName = "Hello.txt";BufferedWriter out = new BufferedWriter(new FileWriter(fileName));out.write("Hello!");out.newLine();out.write("This is another text file using BufferedWriter");out.newLine();out.write("So I can us a common way to start a new line");out.close();}}
5.3.2-读文本文件
读文本文件相关的类
FileReader
类
- 从文本文件中读取字符
- 继承自
Reader
抽象类的子类
InputStreamReader
BufferedReader
类
- 读文本文件的缓冲器类
- 具有
readLine()
方法,可以对换行符进行鉴别,一行一行地读取输入流中的内容
- 继承自
Reader
例:读文本文件并显示
import java.io.BufferedReader;import java.io.FileReader;import java.io.IOException;public class BuffereddReaderTester {public static void main(String[] args) {String fileName = "Hello.txt", line;//文本访问操作有可能产生异常,因此用try-catch块try {BufferedReader in = new BufferedReader(new FileReader(fileName));line = in.readLine();while (line != null) {System.out.println(line);line = in.readLine();}in.close();} catch (IOException iox) {System.out.println("Problem reading " + fileName);}}}
说明
-
运行该程序,屏幕上将逐行显示
Hello.txt
文件中的内容。
-
FileReader
对象:创建后将打开文件,如果文件不存在,会抛出一个
IOException
-
FileReader
类的
readLine()
方法:从一个面向字符的输入流中读取一行文本。如果其中不再有数据,返回
null
。
-
Reader
类的
read()
方法:也可以用来判别文件结束。该方法返回的一个表示某字符的
int
型整数,如果读到文件末尾,返回-1。据此,可修改本例中的读文件部分:
int c;while((c = in.read()) != -1){System.out.print((char)c);}
-
close()
方法:为了操作系统可以更为有效地利用有限的资源,应该在读取完毕后,调用该方法。
例:文件的复制
-
指定源文件和目标文件名,将源文件的内容复制到目标文件。调用方式为(命令行操作):
java copy sourceFile destinationFile
共包括两个类
-
CopyMaker
以下返回值均为
boolean
类型,成功为
true
,不成功为
false
private boolean openFiles()
打开文件
-
private boolean copyFiles()
真正拷贝复制文件
-
private boolean closeFiles()
关闭文件
-
public boolean copy(String src, String dst)
对外的方法,其余三个方法均辅助本方法实现而不对外可见
FileCopy
main()
CopyMaker
类构造
import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.FileReader;import java.io.FileWriter;import java.io.IOException;public class CopyMaker {String sourceName, destName;// 以下两个引用将要指向读写BufferedReader source;BufferedWriter dest;String line;private boolean openFiles() {// try-catch捕获异常try {source = new BufferedReader(new FileReader(sourceName));} catch (IOException iox) {System.out.println("Problem opening " + sourceName);return false;}try {dest = new BufferedWriter(new FileWriter(destName));} catch (IOException iox) {System.out.println("Problem opening " + destName);return false;}return true;}private boolean copyFiles() {try {line = source.readLine();while (line != null) {dest.write(line);dest.newLine();// 跨平台换行符line = source.readLine();}} catch (IOException iox) {System.out.println("Problem reading or writing");return false;}return true;}private boolean closeFiles() {boolean retVal = true;// 满足但出口,符合结构化程序设计思想try {source.close();} catch (IOException iox) {System.out.println("Problem closing " + sourceName);retVal = false;}try {dest.close();} catch (IOException iox) {System.out.println("Problem closing " + destName);retVal = false;}return retVal;}public boolean copy(String src, String dst) {sourceName = src;destName = dst;// 若返回值结果为真说明三个操作都正确完成了,否则说明出现了错误return openFiles() && copyFiles() && closeFiles();}}
FileCopy
类构造
public class FileCopy {public static void main(String[] args) {if (args.length == 2) {// 参数个数正确new CopyMaker().copy(args[0], args[1]);} else {System.out.println("Please Enter File Names");}// eclipse输入命令行参数的方法可以参考https://blog.csdn.net/weixin_43896318/article/details/101846956}}
5.3.3-写二进制文件
二进制文件的写比文本文件的写快很多;同样的信息以二进制文本存储通常比文本文件小很多;有些时候我们的数据本身不是纯文本,无法存储为文本文件,因此需要以二进制形式存储到二进制文件中。
抽象类
OutputStream
派生类
FileOutputStream
- 用于一般目的输出(非字符输出);
- 用于成组字节输出
派生类
DataOutputStream
- 具有写各种基本数据类型的方法
- 将数据写到另一个输出流(是处理流,并不直接执行写操作,而是对数据按照类型处理,然后将数据传给另外的输出流,有其他输出流负责真正的写操作)
- 在所有的计算机平台上使用同样的数据格式
- 其中的
size
方法可以作为计数器,统计写入的字节数
DataOutputStream
类的成员
名称 | 说明 |
---|---|
public DataOutputStream(OutputStream out) |
构造函数,参数为一个
OutputStream 对象作为其底层的输出对象 |
protected int written |
私有属性,代表当前已写出的字节数 |
public void fulsh() |
冲刷此数据流,使流内的数据都被写出 |
public final int size() |
返回私有变量
written 的值,即已经写出的字节数 |
public void write(int b) |
向底层输出流输出
int 变量的低8位,执行后,记录写入字节数的计数器+1 |
public final void writeBoolean(boolean b) |
写出一个布尔数,
true 为1, false 为0,执行后计数器增加1 |
public final void writeByte(int b) |
public final void writeByte(int b) 将 int 参数的低8位写入,舍弃高24位,计数器增加1 |
public void writeBytes(String s) |
字符串中的每个字符被丢掉高8位写入流中,计数器增加写入的字节数,即字符个数 |
public final void writeChar(int c) |
将16-bit字符写入流中,高位在前,计数器增加2 |
public void writeDouble(double v) |
写双精度数,计数器增加8 |
public void writeFloat(float f) |
写单精度数,计数器增加4 |
public void writeInt(int I) |
写整数,计数器增加4 |
public void writeLong(long I) |
写长整数,计数器增加8 |
public final void writeShort(int s) |
写短整数,计数器增加2 |
例:将
int
写入文件
import java.io.DataOutputStream;import java.io.FileOutputStream;import java.io.IOException;//将三个int型数字255/0/-1写入数据文件data1.datpublic class FileOutputstreamTester {public static void main(String[] args) {String fileName = "data1.dat";int value0 = 255;int value1 = 0;int value2 = -1;try {// FileOutputStream是原生字节流,只能识别写出的是字节,不能识别int,double// DataOutputStream可以将字节处理成某种类型的数据DataOutputStream out = new DataOutputStream(new FileOutputStream(fileName));out.writeInt(value0);out.writeInt(value1);out.writeInt(value2);out.close();System.out.println("Finished writing");} catch (IOException iox) {System.out.println("Problem writing " + fileName);}}}
BufferedOutputStream
类
用法示例:
DataOutputStream out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(fileName)));
说明:
-
BufferedOutputStream
是处理流,用于缓冲,构造
BufferedOutputStream
需要输出流,在本例中是
FileOutputStream
,以其为参数构造
BufferedOutputStream
;本例中继续以
BufferedOutputStream
为对象构造
DataOutputStream
对象,既可以缓冲又可以写入。
import java.io.BufferedOutputStream;import java.io.DataOutputStream;import java.io.FileOutputStream;import java.io.IOException;public class BufferedOutputStreamTester {// 没有捕获异常所以声明抛出了异常public static void main(String[] args) throws IOException {String fileName = "mixedTypes.dat";// 原生字节输出流->缓冲DataOutputStream dataOut = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(fileName)));dataOut.writeInt(0);// dataOut.size()返回的是一共写了多少字节而非当前System.out.println(dataOut.size() + "bytes have been written.");dataOut.writeDouble(31.2);System.out.println(dataOut.size() + "bytes have been written.");dataOut.writeBytes("JAVA");System.out.println(dataOut.size() + "bytes have been written.");dataOut.close();}}
输出:
4bytes have been written.12bytes have been written.16bytes have been written.
例:向文件写入一个字节并读取
public class FileOutputStreamTester2 {public static void main(String[] args) throws IOException {DataOutputStream out = new DataOutputStream(new FileOutputStream("trytry.dat"));out.writeByte(-1);// 应该写入2个F(8个1)out.close();DataInputStream in = new DataInputStream(new FileInputStream("trytry.dat"));int a = in.readByte();System.out.println(Integer.toHexString(a));System.out.println(a);in.skip(-1);// 往后一个位置,以便下面重新读出a = in.readUnsignedByte();System.out.println(Integer.toHexString(a));System.out.println(a);in.close();}}
输出:
ffffffff-1ff255
5.3.4-读二进制文件
例:读取二进制文件中的3个
int
型数字并相加
import java.io.BufferedInputStream;import java.io.DataInputStream;import java.io.FileInputStream;import java.io.IOException;public class DataInputStreamTester {public static void main(String[] args) {String fileName = "data1.dat";int sum = 0;try {DataInputStream instr = new DataInputStream(new BufferedInputStream(new FileInputStream(fileName)));sum += instr.readInt();sum += instr.readInt();sum += instr.readInt();System.out.println("The sum is: " + sum);instr.close();} catch (IOException iox) {System.out.println("Problem reading " + fileName);}}}
输出:
254
说明:
- 一般喜欢在同一文件中写一个类型的数据
- 可以利用
try-catch
读取未知个数的数
例:通过捕获异常控制读取结束
public class DataInputStreamTester {public static void main(String[] args) {String fileName = "data1.dat";long sum = 0;try {DataInputStream instr = new DataInputStream(new BufferedInputStream(new FileInputStream(fileName)));try {while (true) {sum += instr.readInt();}} catch (EOFException eof) {System.out.println("The sum is:" + sum);instr.close();}} catch (IOException iox) {System.out.println("IO Problems with " + fileName);}}}//使用了嵌套try-catch块
例:用字节流读取文本文件
import java.io.FileInputStream;import java.io.IOException;public class InputStreamTester {public static void main(String[] args) throws IOException {FileInputStream s = new FileInputStream("Hello.txt");int c;while ((c = s.read()) != -1) {System.out.write(c);}s.close();}}//说明:read()方法读取一个字节,转化为[0,255]间的一个整数,返回一个int。如果读到了文件末尾,则返回-1.//write(int)方法写一个字节的低8位,忽略高24位(高低需要看大端小端)
读写字节
DataOutputStream
的
writeByte
方法
-
public final void writeByte(int b) throws IOException
- 将
int
的最不重要字节写入输出流
DataInputStream
的
readUnsignedByte
方法
-
public final int readUnsignedFile()Throws IOException
- 从输入流中读取1字节存入
int
的最不重要字节。
例:文件复制
import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.DataInputStream;import java.io.DataOutputStream;import java.io.EOFException;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;public class CopyBytes {public static void main(String[] args) {DataInputStream instr;DataOutputStream outstr;if (args.length != 2) {System.out.println("Please enter file names");return;}try {instr = new DataInputStream(new BufferedInputStream(new FileInputStream(args[0])));outstr = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(args[1])));try {int data;while (true) {data = instr.readUnsignedByte();outstr.writeByte(data);}} catch (EOFException eof) {outstr.close();instr.close();return;}} catch (FileNotFoundException nfx) {//先捕获比较具体的文件未找到异常System.out.println("Problem opening files");} catch (IOException iox) {//再捕获比较一般的异常System.out.println("IO Problems");}}}
5.3.5-
File
类
在
File
类中存储一些文件相关的信息,并提供了管理文件的一些操作
File
类的作用
- 创建、删除文件
- 重命名文件
- 判断文件的读写权限是否存在
- 设置和查询文件的最近修改时间
- 构造文件流可以使用
File
类的对象作为参数
例:
File
类举例
//创建文件Hello.txt,如果存在则删除旧文件,不存在则直接创建新的import java.io.File;public class FileTester {public static void main(String[] args) {File f = new File("Hello.txt");if (f.exists()) {f.delete();} else {try {f.createNewFile();} catch (Exception e) {System.out.println(e.getMessage());}}}}
运行结果:
- 因为在前面的例子中已经创建了Hello.txt,所以第一次运行将删除这个文件
- 第二次运行则又创建了一个此名的空文件
分析:
- 在试图打开文件之前,可以使用
File
类的
isFile
方法来确定
File
对象是否代表一个文件而非目录
- 还可以通过
exists
方法判断同名文件或路径是否存在,进而采取正确的方法,以免造成误操作
例:改进的文件复制程序
之前的复制文件例子中,有以下几个问题没有考虑
- 复制的目标文件是否又同名文件存在,会不会冲掉原文件
- 源文件是否存在
import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.DataInputStream;import java.io.DataOutputStream;import java.io.EOFException;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;public class NewCopyBytes {public static void main(String[] args) {DataInputStream instr;DataOutputStream outstr;if (args.length != 2) {System.out.println("Please enter file names");return;}// 确定文件都存在,否则给用户提示File inFile = new File(args[0]);File outFile = new File(args[1]);if (outFile.exists()) {System.out.println(args[1] + " already exists");return;}if (!inFile.exists()) {System.out.println(args[0] + " does not exist");return;}try {instr = new DataInputStream(new BufferedInputStream(new FileInputStream(args[0])));outstr = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(args[1])));try {int data;while (true) {data = instr.readUnsignedByte();outstr.writeByte(data);}} catch (EOFException eof) {outstr.close();instr.close();return;}} catch (FileNotFoundException nfx) {System.out.println("Problem opening files");} catch (IOException iox) {System.out.println("IO Problems");}}}
5.3.6-处理压缩文件
压缩流类
GZIPOutputStream
和
ZipOutputStream
可分别把数据压缩成
GZIP
格式和
ZIP
格式
GZIPInputStream
和
ZipInputStream
可分别把压缩成
GZIP
格式和
ZIP
格式的数据解压缩恢复原状
例:压缩和解压缩
Gzip
文件
//将文本文件Hello.txt压缩为文件test.gz,再解压该文件,显示其中内容,并另存为newHello.txtimport java.io.BufferedReader;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStreamReader;import java.util.zip.GZIPInputStream;import java.util.zip.GZIPOutputStream;public class GZIPTester {public static void main(String[] args) throws IOException {// 构建原生字节文件输入流对象FileInputStream in = new FileInputStream("Hello.txt");// 在普通输入流外接GZIPOutputStream对象GZIPOutputStream out = new GZIPOutputStream(new FileOutputStream("test.gz"));System.out.println("Writing compressing file from Hello.txt to test.gz");// 以下实现文件复制int c;while ((c = in.read()) != -1) {out.write(c);// 写压缩文件}in.close();out.close();System.out.println("Reading file from test.gz to monitor");// InputStreamReader:面向字节的流和面向字符的流的桥梁 BufferedReader实现按行读BufferedReader in2 = new BufferedReader(new InputStreamReader(new GZIPInputStream(new FileInputStream("test.gz"))));String s;while ((s = in2.readLine()) != null) {System.out.println(s);}in2.close();System.out.println("Writing decompression to newHello.txt");GZIPInputStream in3 = new GZIPInputStream(new FileInputStream("test.gz"));FileOutputStream out2 = new FileOutputStream("newHello.txt");while ((c = in3.read()) != -1) {out2.write(c);}in3.close();out2.close();}}
运行结果
- 首先生成了压缩文件
test.gz
- 再读取显示其中的内容,和
Hello.txt
中的内容完全一样
- 解压缩文件
newHello.txt
和
Hello.txt
中的内容也完全相同
说明
-
read()
方法读取一个字节,转化为$[0,255]之间的一个整数,返回一个`int`。如果读到了文件末尾,则返回-1$
-
write(int)
方法写一个字节的低$8$位,忽略了高$24$位
例:
Zip
文件压缩与解压缩
//从命令行输入若干个文件名,将所有文件压缩为"test.zip",再从此压缩文件中解压并显示import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.zip.ZipEntry;import java.util.zip.ZipInputStream;import java.util.zip.ZipOutputStream;public class ZipOutputStreamTester {public static void main(String[] args) throws IOException {ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream("test.zip")));int len = args.length;for (int i = 0; i < len; i++) {System.out.println("Writing file " + args[i]);BufferedInputStream in = new BufferedInputStream(new FileInputStream(args[i]));out.putNextEntry(new ZipEntry(args[i]));int c;while ((c = in.read()) != -1) {out.write(c);}in.close();}out.close();System.out.println("Reading File");// 解压缩流<-缓冲流<-二进制流ZipInputStream in2 = new ZipInputStream(new BufferedInputStream(new FileInputStream("test.zip")));ZipEntry ze;// 逐个文件判断while ((ze = in2.getNextEntry()) != null) {System.out.println("Reading File " + ze.getName());int x;// 读的同时解压缩了while ((x = in2.read()) != -1) {System.out.write(x);}System.out.println();}in2.close();}}
运行结果
- 在命令行输入两个文本文件名(eclipse也支持运行时输入命令行参数,方法可自行百度)后,将生成
test.zip
文件
- 使用任意解压软件打开
test.zip
后可以看到被压缩的两个文件
- 在
console
里可以看到解压后每个文件的内容
- 在资源管理器窗口中,可以使用任意解压软件解压缩
test.zip
,可以恢复出和原来文件相同的两个文本文件
例:解压缩
Zip
文件,并恢复其原来的路径
更多的情况,我们希望解压文件并恢复其原来的目录结构
import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.zip.ZipEntry;import java.util.zip.ZipInputStream;public class Unzip {byte doc[] = null;// 存储解压缩数据的缓冲字节数组String Filename = null;// 压缩文件名字字符串String UnZipPath = null;// 解压缩路径字符串public Unzip(String filename, String unZipPath) {this.Filename = filename;this.UnZipPath = unZipPath;this.setUnZipPath(this.UnZipPath);}public Unzip(String filename) {this.Filename = new String(filename);this.UnZipPath = null;this.setUnZipPath(this.UnZipPath);}private void setUnZipPath(String unZipPath) {if (unZipPath.endsWith("\\\\")) {this.UnZipPath = new String(unZipPath);} else {this.UnZipPath = new String(unZipPath + "\\\\");}}public void doUnZip() {try {ZipInputStream zipis = new ZipInputStream(new FileInputStream(Filename));ZipEntry fEntry = null;while ((fEntry = zipis.getNextEntry()) != null) {if (fEntry.isDirectory()) {// 是路径则创建路径checkFilePath(UnZipPath + fEntry.getName());// 判断路径是否存在} else {// 是文件则解压缩文件String fname = new String(UnZipPath + fEntry.getName());try {FileOutputStream out = new FileOutputStream(fname);doc = new byte[512];// 一次多读一些字节int n;while ((n = zipis.read(doc, 0, 512)) != -1) {// 返回值是实际读到的字符数,文件末尾即-1out.write(doc, 0, n);}out.close();out = null;doc = null;} catch (Exception ex) {}}}zipis.close();} catch (IOException ioe) {System.out.println(ioe);}}private void checkFilePath(String dirName) throws IOException {File dir = new File(dirName);if (!dir.exists()) {dir.mkdirs();// 创建所有缺失的目录}}}
public class UnZipTester {public static void main(String[] args) {String zipFile = args[0];// 第一个参数为zip文件名String unZipPath = args[1] + "\\\\";// 第二个参数为指定解压缩路径Unzip myZip = new Unzip(zipFile, unZipPath);myZip.doUnZip();}}
5.3.7-对象序列化
如果有需要永久保留的信息,则需要对象的序列化,即将对象整体写入,再整体读出。
ObjectInputStream
/
ObjectOutputStream
类
实现对象的读写
- 通过
ObjectOutputStream
把对象写入磁盘文件
- 通过
ObjectInputStream
把对象读入程序
不保存对象的
transient
和
static
类型的变量
-
transient
修饰的变量不被保存
-
static
修饰的变量不属于任何一个对象,因此也不被保存
对象想要实现序列化,其所属的类必须实现
Serializable
接口(为了安全考虑)
ObjectOutputStream
-
必须通过另一个流构造
OutputSteeam
(也为处理流,不直接执行写操作):
// 首先构造一个FileOutputStream对象,直接和文件打交道FileOutputStream out = new FileOutputStream("theTime");// 再以其为参数,构造ObjectOutputStream对象,再用其对对象存盘ObjectOutputStream s = new ObjectOutputStream(out);s.writeObject("Today");s.writeObject(new Date());// 注:以上两个对象已经实现Serializable接口s.flush();
ObjectInputStream
-
必须通过另一个流构造
ObjectInputStream
// 首先构造一个FileInputStream对象,直接和文件打交道FileInputStream in = new FileInputStream("theTime");// 再以其为参数,构造ObjectInputStream对象,再用其对对象存盘ObjectInputStream s = new ObjectInputStream(in);String today = (String)s.readObject();Date date = (Date)s.readObject();
Seriealizable
-
Serizable
接口的定义
package java.io;public interface Serializable{// there\'s nothing here!}
事实上是一个空接口
-
实现
Serializable
接口的语句
// 事实上只要implements这个接口即可,表明允许对象可以整体存入磁盘public class MyClass implements Serializable{//...}
-
使用关键字
transient
可以阻止对象的某些成员被自动写入文件
例:创建一个书籍对象输出并读出
import java.io.Serializable;// 创建一个书籍对象,并把它输出到一个文件book.dat中,然后再把该对象读出来,在屏幕上显示对象信息public class Book implements Serializable {// Serializable接口知识标志对象可以被序列化,事实上里面是空的int id;String name;String author;double price;public Book(int id, String name, String author, double price) {this.id = id;this.name = name;this.author = author;this.price = price;}}
import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.ObjectInputStream;import java.io.ObjectOutputStream;public class SerializableTester {public static void main(String[] args) throws IOException, ClassNotFoundException {Book book = new Book(100032, "Java Programming Skills", "Wang Sir", 30.0);// 在普通的输出流之外加一个ObjectOutputStream,以便可以写出对象ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("book.dat"));oos.writeObject(book);oos.close();book = null;ObjectInputStream ois = new ObjectInputStream(new FileInputStream("book.dat"));// 需要额外的文档记录我们究竟写入了什么对象book = (Book) ois.readObject();ois.close();System.out.println("ID is:" + book.id);System.out.println("name is:" + book.name);System.out.println("author is:" + book.author);System.out.println("price is:" + book.price);}}
运行结果
ID is:100032name is:Java Programming Skillsauthor is:Wang Sirprice is:30.0
Externalizable
接口
-
API
中的说明为
public interface Externalizable extends Serializable
如果实现了
Externalizable
接口,就不必实现
Serializable
接口,因为
Externalizable
接口已经是
Serializable
的超接口
-
其中有两个方法
writeExternal()
和
readExternal()
,因此实现该接口类必须实现这两个方法;可以在这两个方法中按照我们自己的设计实现如何将对象写入文件以及从文件中读取对象,比如可以设计一些加密算法来提高数据安全性
-
ObjectInputStream
的
readObject()
方法调用对象所属类的
readExternal()
,此时
readObject()
只作为标志
5.3.8-随机文件读写
Java将数据的输入输出都看作字节流,因此对文件的随机读写支持得并不很好,但是Java依然提供了文件读写有关的类,因此依旧可以实现随机文件读写,只是略麻烦。
RandomAccessFile
类
-
可跳转到文件的任意位置读/写数据
-
可在随机文件中插入数据,而不破坏该文件的其他数据
-
实现了
DataInput
和
DataOutput
接口,可使用普通的读写方法
-
有位置指示器,指向当前读写处的位置。刚打开文件时,文件指示器指向文件的开头处。对文件指针显示操作的方法有:
int skipBytes(int n)
:把文件指针向前移动指定的
n
个字节
-
void seek(long)
:移动文件指针到指定的位置
-
long getFilePointer
:得到当前的文件指针
在登场记录格式文件的随机读取时有很大的优势,但仅限于操作文件,不能访问五年其他IO设备,如网络、内存映像等
构造方法
public RandomAccessFile(File file,String mode)throws FileNotFoundExceptionpublic RandomAccessFile(String name,String name)throws FileNotFoundException
构造
RandomAccessFile
对象时,要指出操作:仅读,还是读写
new RandomAccessFile("farrago.txt","r");new RandomAccessFile("farrago.txt","rw");
RandomAccessFile
类常用
API
可以查看Java官方文档
例:随机文件读写
public class Employee {char[] name = { \'\\u0000\', \'\\u0000\', \'\\u0000\', \'\\u0000\', \'\\u0000\', \'\\u0000\', \'\\u0000\', \'\\u0000\' };int age;public Employee(String name, int age) throws IOException {if (name.toCharArray().length > 8) {System.arraycopy(name.toCharArray(), 0, this.name, 0, 8);} else {System.arraycopy(name.toCharArray(), 0, this.name, 0, name.toCharArray().length);}this.age = age;}}
import java.io.RandomAccessFile;public class RandomAccessFileTester {String Filename;public RandomAccessFileTester(String Filename) {this.Filename = Filename;}public void writeEmployee(Employee e, int n) throws Exception {RandomAccessFile ra = new RandomAccessFile(Filename, "rw");ra.seek(n * 20);for (int i = 0; i < 8; i++) {ra.writeChar(e.name[i]);}ra.writeInt(e.age);ra.close();}public void readEmployee(int n) throws Exception {char buf[] = new char[8];RandomAccessFile ra = new RandomAccessFile(Filename, "r");ra.seek(n * 20);for (int i = 0; i < 8; i++) {buf[i] = ra.readChar();}System.out.println("name:");System.out.println(buf);System.out.println("age:" + ra.readInt());ra.close();}public static void main(String[] args) throws Exception {RandomAccessFileTester t = new RandomAccessFileTester("temp/1.txt");Employee e1 = new Employee("zhangSantt", 23);Employee e2 = new Employee("李晓珊", 33);Employee e3 = new Employee("王华", 19);t.writeEmployee(e1, 0);t.writeEmployee(e3, 2);System.out.println("第一个雇员信息:");t.readEmployee(0);System.out.println("第三个雇员信息:");t.readEmployee(2);System.out.println("第二个雇员信息:");t.readEmployee(1);}}