一、File类的使用
1、概述
- java.io.File类:文件和文件目录路径的抽象表示形式,与平台无关
- File 能新建、删除、重命名文件和目录,但 File 不能访问文件内容本身。如果需要访问文件内容本身,则需要使用输入/输出流。
- 想要在Java程序中表示一个真实存在的文件或目录,那么必须有一个File对象,但是Java程序中的一个File对象,可能没有一个真实存在的文件或目录。
- File对象可以作为参数传递给流的构造器
2、构造器
- public File(String pathname):以pathname为路径创建File对象,可以是绝对路径或者相对路径,如果pathname是相对路径,则默认的当前路径在系统属性user.dir中存储。
- 绝对路径:是一个固定的路径,从盘符开始
- 相对路径:是相对于某个位置开始
- public File(String parent,String child):以parent为父路径,child为子路径创建File对象。
- public File(File parent,String child):根据一个父File对象和子文件路径创建File对象
3、路径分隔符
- 路径中的每级目录之间用一个路径分隔符隔开。
- 路径分隔符和系统有关:
- windows和DOS系统默认使用“\”来表示
- UNIX和URL使用“/”来表示
- Java程序支持跨平台运行,因此路径分隔符要慎用。
- 为了解决这个隐患,File类提供了一个常量:
public static final String separator。根据操作系统,动态的提供分隔符。 - 举例:
4、常用方法
(1) File类的获取功能
- public String getAbsolutePath():获取绝对路径
- public String getPath() :获取路径
- public String getName() :获取名称
- public String getParent():获取上层文件目录路径。若无,返回null
- public long length() :获取文件长度(即:字节数)。不能获取目录的长度。
- public long lastModified() :获取最后一次的修改时间,毫秒值
- public String[] list() :获取指定目录下的所有文件或者文件目录的名称数组
- public File[] listFiles() :获取指定目录下的所有文件或者文件目录的File数组
(2) File类的重命名功能
- public boolean renameTo(File dest):把文件重命名为指定的文件路径
IO流原理及流的分类
(3) File类的判断功能 - public boolean isDirectory():判断是否是文件目录
- public boolean isFile() :判断是否是文件
- public boolean exists() :判断是否存在
- public boolean canRead() :判断是否可读
- public boolean canWrite() :判断是否可写
- public boolean isHidden() :判断是否隐藏
(1) File类的创建功能 - public boolean createNewFile() :创建文件。若文件存在,则不创建,返回false
- public boolean mkdir() :创建文件目录。如果此文件目录存在,就不创建了。
如果此文件目录的上层目录不存在,也不创建。 - public boolean mkdirs() :创建文件目录。如果上层文件目录不存在,一并创建
注意事项:如果你创建文件或者文件目录没有写盘符路径,那么,默认在项目
路径下。
(2) File类的删除功能 - public boolean delete():删除文件或者文件夹
删除注意事项:
Java中的删除不走回收站。
要删除一个文件目录,请注意该文件目录内不能包含文件或者文件目录
代码演示
File dir1 = new File("D:/IOTest/dir1");
if (!dir1.exists()) { // 如果D:/IOTest/dir1不存在,就创建为目录
dir1.mkdir();
}
// 创建以dir1为父目录,名为"dir2"的File对象
File dir2 = new File(dir1, "dir2");
if (!dir2.exists()) { // 如果还不存在,就创建为目录
dir2.mkdirs();
}
File dir4 = new File(dir1, "dir3/dir4");
if (!dir4.exists()) {
dir4.mkdirs();
}
// 创建以dir2为父目录,名为"test.txt"的File对象
File file = new File(dir2, "test.txt");
if (!file.exists()) { // 如果还不存在,就创建为文件
file.createNewFile();
}
二、 IO流原理及流的分类
1、概述
- I/O是Input/Output的缩写, I/O技术是非常实用的技术,用于
处理设备之间的数据传输。如读/写文件,网络通讯等。 - Java程序中,对于数据的输入/输出操作以“流(stream)” 的
方式进行。 - java.io包下提供了各种“流”类和接口,用以获取不同种类的
数据,并通过标准的方法输入或输出数据。
2、分类
注意:深色的需要掌握
三、IO流的具体用法
1、概述
- 文本文件:(txt、java、c、cpp):使用字符流处理
- 非文本文件(.jpg,mp3,avi,doc,ppt):使用字节流处理
2、节点流
(1)节点流也叫文件流,包含四个实现类:FileInputSteam 、FileOutputStream、FileReader、FileWriter
(2)读取文件步骤:(try–catch–finally)
a.建立一个File对象
File file=new File(“Test.txt”);
b.建立一个流对象,将已存在的一个文件加载进流。
FileReader fr = new FileReader(file);
c.创建一个临时存放数据的数组。
char[] ch = new char[1024];
d.调用流对象的读取方法将流中的数据读入到数组中。
fr.read(ch);
f. 关闭资源。
fr.close();
FileReader fr = null;
File file=null;
try {
file=new File("Test.txt")
fr = new FileReader(file);
char[] buf = new char[1024];
int len;
while ((len = fr.read(buf)) != -1) {
System.out.print(new String(buf, 0, len));
}
} catch (IOException e) {
System.out.println("read-Exception :" + e.getMessage());
} finally {
if (fr != null) {
try {
fr.close();
} catch (IOException e) {
System.out.println("close-Exception :" + e.getMessage());
}
}
}
(3)写入文件:
a.建立一个File对象
File file=new File(“Test.txt”);
b.创建流对象,建立数据存放文件
FileWriter fw = new FileWriter(file);
c.调用流对象的写入方法,将数据写入流
fw.write(“atguigu-songhongkang”);
d.关闭流资源,并将流中的数据清空到文件中。
fw.close();
FileWriter fw = null;
File file=null;
try {
file=new File("Test.txt")
fw = new FileWriter(file);
fw.write("atguigu-songhongkang");
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fw != null)
try {
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
注意:字节流的步骤和字符流一样
(4)实际应用:复制文件
字符流:
public class FileReaderWriterTest {
public static void main(String[] args) {
long start = System.currentTimeMillis();
String srcPath = "C:\\Users\\Dell\\Desktop\\test.txt";
String destPath = "C:\\Users\\Dell\\Desktop\\testCopy2.txt";
copyFile(srcPath, destPath);
long end = System.currentTimeMillis();
System.out.println("复制操作所花费的时间为:" + (end - start));//10毫秒
}
//文件的复制
@Test
public static void copyFile(String srcPath, String destPath) {
FileReader fileReader = null;
FileWriter fileWriter = null;
try {
//1.创建File类对象:指明输入文件和输出文件
//被输出文件
File srcFile = new File(srcPath);
//被输入文件
File destFile = new File(destPath);
//2.创建输入流和输出流对象
fileReader = new FileReader(srcFile);
fileWriter = new FileWriter(destFile);
//3.数据的读入和写出操作
char[] cbuf = new char[10];
int len;
while ((len = fileReader.read(cbuf)) != -1) {
fileWriter.write(cbuf, 0, len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
//4.关闭资源
try {
if (fileWriter != null) {
fileWriter.close();
}
} catch (IOException e) {
e.printStackTrace();
}
try {
if (fileReader != null) {
fileReader.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
字节流:
@Test
public void copyFile(String srcPath, String destPath) {
FileOutputStream fileOutputStream = null;
FileInputStream fileInputStream = null;
try {
File srcFile = new File(srcPath);
File destFile = new File(destPath);
fileInputStream = new FileInputStream(srcFile);
fileOutputStream = new FileOutputStream(destFile);
byte[] buffer = new byte[1024];
int len;
while ((len = fileInputStream.read(buffer)) != -1) {
fileOutputStream.write(buffer, 0, len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fileOutputStream != null)
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
if (fileInputStream != null)
fileInputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
@Test
public void testCopyFile() {
long start = System.currentTimeMillis();
String srcPath = "C:\\Users\\Dell\\Desktop\\test.mp4";
String destPath = "C:\\Users\\Dell\\Desktop\\testCopy.mp4";
copyFile(srcPath, destPath);
long end = System.currentTimeMillis();
System.out.println("复制操作所花费的时间为:" + (end - start));//210毫秒
}
}
注意
- 定义文件路径时,注意:可以用“/”或者“\”。
- 在写入一个文件时,如果使用构造器FileOutputStream(file),则目录下有同名文件将被覆盖。
- 如果使用构造器FileOutputStream(file,true),则目录下的同名文件不会被覆盖,在文件内容末尾追加内容。
- 在读取文件时,必须保证该文件已存在,否则报异常。
- 字节流操作字节,比如:.mp3,.avi,.rmvb,mp4,.jpg,.doc,.ppt
- 字符流操作字符,只能操作普通文本文件。最常见的文本文件:.txt,.java,.c,.cpp 等语言的源代码。尤其注意.doc,excel,ppt这些不是文本文件。
3、缓存流
(1)概述
为了提高数据读写的速度,Java API提供了带缓冲功能的流类,在使用这些流类时,会创建一个内部缓冲区数组,缺省使用8192个字节(8Kb)的缓冲区。
- 缓冲流要“套接”在相应的节点流之上,根据数据操作单位可以把缓冲流分为:
BufferedInputStream 和 BufferedOutputStream
BufferedReader 和 BufferedWriter - 当读取数据时,数据按块读入缓冲区,其后的读操作则直接访问缓冲区
- 当使用BufferedInputStream读取字节文件时,BufferedInputStream会一次性从文件中读取8192个(8Kb),存在缓冲区中,直到缓冲区装满了,才重新从文件中读取下一个8192个字节数组。
- 向流中写入字节时,不会直接写到文件,先写到缓冲区中直到缓冲区写满,BufferedOutputStream才会把缓冲区中的数据一次性写到文件里。使用方法flush()可以强制将缓冲区的内容全部写入输出流
- 关闭流的顺序和打开流的顺序相反。只要关闭最外层流即可,关闭最外层流也会相应关闭内层节点流
- flush()方法的使用:手动将buffer中内容写入文件
- 如果是带缓冲区的流对象的close()方法,不但会关闭流,还会在关闭流之前刷新缓冲区,关闭后不能再写出
(2)代码演示
BufferedReader br = null;
File srcFile = null;
File destFile = null;
BufferedWriter bw = null;
try {
//1、建立File对象
srcFile = new File(srcPath);
destFile = new File(destPath);
//2、创建缓冲流对象:它是处理流,是对节点流的包装
br = new BufferedReader(new FileReader(srcFile);
bw = new BufferedWriter(new FileWriter(destFile);
//3、读写操作
String str;
while ((str = br.readLine()) != null) { // 一次读取字符文本文件的一行字符
bw.write(str); // 一次写入一行字符串
bw.newLine(); // 写入行分隔符
}
bw.flush(); // 刷新缓冲区
} catch (IOException e) {
e.printStackTrace();
} finally {
//4、关闭IO流对象
try {
if (bw != null) {
bw.close(); // 关闭过滤流时,会自动关闭它所包装的底层节点流
}
} catch (IOException e) {
e.printStackTrace();
}
try {
if (br != null) {
br.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
(3)实际应用
BufferedInputStream BufferedOutputStream(缓存流):60毫秒
```java
public void copyFile(String srcPath, String destPath) {
BufferedOutputStream bo = null;
BufferedInputStream bi = null;
try {
File srcFile = new File(srcPath);
File destFile = new File(destPath);
bi = new BufferedInputStream(new FileInputStream(srcFile));
bo = new BufferedOutputStream(new FileOutputStream(destFile));
byte[] bytes = new byte[1024];
int len;
while ((len = bi.read(bytes)) != -1) {
bo.write(bytes);
}
bo.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (bo != null)
bo.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
if (bi != null)
bi.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
public void test() {
long start = System.currentTimeMillis();
String srcPath = "C:\\Users\\Dell\\Desktop\\test.mp4";
String destPath = "C:\\Users\\Dell\\Desktop\\testCopy.mp4";
copyFile(srcPath, destPath);
long end = System.currentTimeMillis();
System.out.println("复制操作所花费的时间为:" + (end - start));//60毫秒
}
BufferedReader BufferedWriter(缓存流):2毫秒
public class BufferedWriterReaderTest {
@Test
public void test() {
long start = System.currentTimeMillis();
String srcPath = "C:\\Users\\Dell\\Desktop\\test.txt";
String destPath = "C:\\Users\\Dell\\Desktop\\testCopy.txt";
copyFile(srcPath, destPath);
long end = System.currentTimeMillis();
System.out.println("复制操作所花费的时间为:" + (end - start));//215毫秒
}
public void copyFile(String srcPath, String destPath) {
BufferedReader br = null;
BufferedWriter bw = null;
try {
File srcFile = new File(srcPath);
File destFile = new File(destPath);
br = new BufferedReader(new FileReader(srcFile));
bw = new BufferedWriter(new FileWriter(destFile));
String str;
while ((str = br.readLine()) != null) {
bw.write(str);
bw.newLine();
}
bw.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (bw != null)
bw.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
if (br != null)
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
4、转换流
(1)概述
- 转换流提供了在字节流和字符流之间的转换
- Java API提供了两个转换流:
InputStreamReader:将InputStream转换为Reader
OutputStreamWriter:将Writer转换为OutputStream - 字节流中的数据都是字符时,转成字符流操作更高效。
- 很多时候我们使用转换流来处理文件乱码问题。实现编码和
解码的功能。
(2)InputStreamReader - 实现将字节的输入流按指定字符集转换为字符的输入流。
- 需要和InputStream“套接”。
- 构造器
public InputStreamReader(InputStream in)
public InputSreamReader(InputStream in,String charsetName)
如: Reader isr = new InputStreamReader(System.in,”gbk”);
(3)OutputStreamWriter
- 实现将字符的输出流按指定字符集转换为字节的输出流。
- 需要和OutputStream“套接”。
- 构造器
public OutputStreamWriter(OutputStream out)
public OutputSreamWriter(OutputStream out,String charsetName)
(4)代码演示
public void testMyInput() throws Exception {
FileInputStream fis = new FileInputStream("dbcp.txt");
FileOutputStream fos = new FileOutputStream("dbcp5.txt");
InputStreamReader isr = new InputStreamReader(fis, "GBK");
OutputStreamWriter osw = new OutputStreamWriter(fos, "GBK");
BufferedReader br = new BufferedReader(isr);
BufferedWriter bw = new BufferedWriter(osw);
String str = null;
while ((str = br.readLine()) != null) {
bw.write(str);
bw.newLine();
bw.flush();
}
bw.close();
br.close();
}
5、对象流
(1)概述
- ObjectInputStream和OjbectOutputSteam
- 用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。
- 序列化:用ObjectOutputStream类保存基本类型数据或对象的机制
- 反序列化:用ObjectInputStream类读取基本类型数据或对象的机制
- ObjectOutputStream和ObjectInputStream不能序列化static和transient修
饰的成员变量
(2)序列化 - 对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。//当其它程序获取了这种二进制流,就可以恢复成原来的Java对象
- 序列化的好处在于可将任何实现了Serializable接口的对象转化为字节数据,使其在保存和传输时可被还原
- 序列化是 RMI(Remote Method Invoke – 远程方法调用)过程的参数和返回值都必须实现的机制,而 RMI 是 JavaEE 的基础。因此序列化机制是JavaEE 平台的基础
- 如果需要让某个对象支持序列化机制,则必须让对象所属的类及其属性是可序列化的,为了让某个类是可序列化的,该类必须实现如下两个接口之一。否则,会抛出NotSerializableException异常
Serializable
Externalizable - 凡是实现Serializable接口的类都有一个表示序列化版本标识符的静态变量:
private static final long serialVersionUID; - serialVersionUID用来表明类的不同版本间的兼容性。简言之,其目的是以序列化对象进行版本控制,有关各版本反序列化时是否兼容。
- 如果类没有显示定义这个静态常量,它的值是Java运行时环境根据类的内部细节自动生成的。若类的实例变量做了修改,serialVersionUID 可能发生变化。故建议,显式声明。
- 简单来说,Java的序列化机制是通过在运行时判断类的serialVersionUID来验证版本一致性的。在进行反序列化时,JVM会把传来的字节流中的serialVersionUID与本地相应实体类的serialVersionUID进行比较,如果相同就认为是一致的,可以进行反序列化,否则就会出现序列化版本不一致的异常。(InvalidCastException)
(3)步骤 - 若某个类实现了 Serializable 接口,该类的对象就是可序列化的:
a.创建一个 ObjectOutputStream
b.调用 ObjectOutputStream 对象的 writeObject(对象) 方法输出可序列化对象
c.注意写出一次,操作flush()一次 - 反序列化
a.创建一个 ObjectInputStream
b.调用 readObject() 方法读取流中的对象 - 强调:如果某个类的属性不是基本数据类型或 String 类型,而是另一个
引用类型,那么这个引用类型必须是可序列化的,否则拥有该类型的
Field 的类也不能序列化
(4)代码演示
ObjectOutputStream:对象序列化
//序列化
@Test
public void ObjectOutputStreamTest() {
ObjectOutputStream oos = null;
try {
File destFile = new File("object.dat");
oos = new ObjectOutputStream(new FileOutputStream(destFile));
oos.writeObject(new String("我爱祖国!!!"));
oos.flush();
oos.writeObject(new Person("张三", 22));
oos.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (oos != null)
oos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
ObjectInputStream :对象反序列化
//反序列化
@Test
public void ObjectInputStreamTest() {
ObjectInputStream ois = null;
try {
File srcFile = new File("object.dat");
ois = new ObjectInputStream(new FileInputStream(srcFile));
Object obj = ois.readObject();
String str = (String) obj;
Person p = (Person) ois.readObject();
System.out.println(str);
System.out.println(p);
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} finally {
try {
if (ois != null)
ois.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
6、面试
7、标准输入、输出流
(1)概述
- System.in和System.out分别代表了系统标准的输入和输出设备
- 默认输入设备是:键盘,输出设备是:显示器
- System.in的类型是InputStream
- System.out的类型是PrintStream,其是OutputStream的子类
FilterOutputStream 的子类 - 重定向:通过System类的setIn,setOut方法对默认设备进行改变。
public static void setIn(InputStream in)
public static void setOut(PrintStream out)
(2)代码演示
System.out.println("请输入信息(退出输入e或exit):");
// 把"标准"输入流(键盘输入)这个字节流包装成字符流,再包装成缓冲流
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = null;
try {
while ((s = br.readLine()) != null) { // 读取用户输入的一行数据 --> 阻塞程序
if ("e".equalsIgnoreCase(s) || "exit".equalsIgnoreCase(s)) {
System.out.println("安全退出!!");
break;
}
// 将读取到的整行字符串转成大写输出
System.out.println("-->:" + s.toUpperCase());
System.out.println("继续输入信息");
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null) {
br.close(); // 关闭过滤流时,会自动关闭它包装的底层节点流
}
} catch (IOException e) {
e.printStackTrace();
}
}
8、打印流
(1)概述
- 实现将基本数据类型的数据格式转化为字符串输出
- 打印流:PrintStream和PrintWriter
提供了一系列重载的print()和println()方法,用于多种数据类型的输出
PrintStream和PrintWriter的输出不会抛出IOException异常
PrintStream和PrintWriter有自动flush功能
PrintStream 打印的所有字符都使用平台的默认字符编码转换为字节。
在需要写入字符而不是写入字节的情况下,应该使用 PrintWriter 类。
System.out返回的是PrintStream的实例
(2)代码演示
PrintStream ps = null;
try {
FileOutputStream fos = new FileOutputStream(new File("D:\\IO\\text.txt"));
// 创建打印输出流,设置为自动刷新模式(写入换行符或字节 '\n' 时都会刷新输出缓冲区)
ps = new PrintStream(fos, true);
if (ps != null) {// 把标准输出流(控制台输出)改成文件
System.setOut(ps);
}
for (int i = 0; i <= 255; i++) { // 输出ASCII字符
System.out.print((char) i);
if (i % 50 == 0) { // 每50个数据一行
System.out.println(); // 换行
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (ps != null) {
ps.close();
}
}
9、数据流
(1)概述
- 为了方便地操作Java语言的基本数据类型和String的数据,可以使用数据流。
- 数据流有两个类:(用于读取和写出基本数据类型、String类的数据)
DataInputStream 和 DataOutputStream
分别“套接”在 InputStream 和 OutputStream 子类的流上 - DataInputStream中的方法
boolean readBoolean() byte readByte()
char readChar() float readFloat()
double readDouble() short readShort()
long readLong() int readInt()
String readUTF() void readFully(byte[] b) - DataOutputStream中的方法
- 将上述的方法的read改为相应的write即可。
(2)代码演示
DataOutputStream dos = null;
try { // 创建连接到指定文件的数据输出流对象
dos = new DataOutputStream(new FileOutputStream("destData.dat"));
dos.writeUTF("我爱北京天安门"); // 写UTF字符串
dos.writeBoolean(false); // 写入布尔值
dos.writeLong(1234567890L); // 写入长整数
System.out.println("写文件成功!");
} catch (IOException e) {
e.printStackTrace();
} finally { // 关闭流对象
try {
if (dos != null) {
// 关闭过滤流时,会自动关闭它包装的底层节点流
dos.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
10、随机存取文件流