java.io.File
类:文件和文件目录路径的抽象表示形式,与平台无关File类提供的构造器:
File(File parent, String child) 从父抽象路径名和子路径名字符串创建新的 File 实例。 |
---|
File(String pathname) 通过将给定的路径名字符串转换为抽象路径名来创建新的 File 实例。 |
File(String parent, String child) 从父路径名字符串和子路径名字符串创建新的 File 实例。 |
文件路径:
相对路径:相较于某个路径下,指明的路径。
绝对路径:包含盘符在内的文件或文件目录的路径
@Test
public void test() {
// 此过程只是new了一个实例,并没有对文件进行操作。有没有这个文件都不会报错
// 第一种:File(String pathname)
// 绝对路径
File file = new File("C:\\java\\JAVA_NOTES\\1.JavaSE\\笔记\\fileTest.txt");
// 相对路径:默认在 module 下
File file1 = new File("fileTest.txt");
System.out.println(file);
// 第二种:File(String parent, String child)
File file2 = new File("C:\\java\\JAVA_NOTES\\1.JavaSE", "笔记");
System.out.println(file2);
// 第三种:第二种:File(File parent, String child)
File file3 = new File(file2, "fileTest.txt");
System.out.println(file3);
}
获取类方法:
返回值 | 描述 |
---|---|
String | getPath() 获取路径 |
String | getAbsolutePath() 获取绝对路径 |
String | getName() 获取文件名 |
String | getParent() 返回文件上层目录名,若没有返回 null |
long | lastModified() 返回此抽象路径名表示的文件上次修改的时间。 |
long | length() 返回由此抽象路径名表示的文件的长度。 |
String[] | list() 获取指定目录下的所有文件或者文件目录的名称数组 |
String[] | list(FilenameFilter filter) 获取指定目录下的所有文件或者文件目录的File数组 |
文件重命名 | |
boolean | renameTo(File dest) 把文件重命名为指定的文件路径 file1.renameTo(file2)为例: 要想保证返回true,需要file1在硬盘中是存在的,且file2不能在硬盘中存在 |
// File中常用的方法
@Test
public void test2() {
// 绝对路径
File file = new File("C:\\java\\JAVA_NOTES\\1.JavaSE\\笔记\\fileTest.txt");
// 在单元测试中,相对路径:默认在 module 下,在 main 方法中,默认路径在此工程下
File file2 = new File("fileTest.txt");
System.out.println(file.getAbsolutePath());
System.out.println(file.getPath());
System.out.println(file.getName());
System.out.println(file.getParent());
System.out.println(file.length());
System.out.println(new Date(file.lastModified()));
System.out.println();
System.out.println(file2.getAbsolutePath());
System.out.println(file2.getPath());
System.out.println(file2.getName());
System.out.println(file2.getParent());
System.out.println(file2.length());
System.out.println(file2.lastModified());
}
@Test
public void test3() {
File file2 = new File("C:\\java\\JAVA_NOTES\\1.JavaSE", "笔记");
File[] files = file2.listFiles();
// 获取目录下的所有 file 文件
for (File file: files) {
System.out.println(file.getName());
}
// 获取目录下的所有 file 文件名
String[] list = file2.list();
for (String s:list) {
System.out.println(s);
}
}
@Test
public void test4() {
File file2 = new File("fileTest.txt");
// file2 文件必须在硬盘上真实存在,修改的文件必须不存在
boolean b = file2.renameTo(new File("fileTest2.txt"));
System.out.println(b);
}
判断类方法:
返回值 | 描述 |
---|---|
boolean | isDirectory() 测试此抽象路径名表示的文件是否为目录 |
boolean | isFile() 测试此抽象路径名表示的文件是否为普通文件。 |
boolean | isHidden() 测试此抽象路径名命名的文件是否为隐藏文件。 |
boolean | exists() 测试此抽象路径名表示的文件或目录是否存在。 |
boolean | canWrite() 判断是否可写 |
boolean | canRead() 判断是否可读 |
@Test
public void test5() {
File file1= new File("fileTest2.txt");
System.out.println(file1.isDirectory());
System.out.println(file1.isFile());
System.out.println(file1.exists());
System.out.println(file1.canRead());
System.out.println(file1.canWrite());
System.out.println(file1.isHidden());
}
在硬盘上创建文件:
返回值 | 描述 |
---|---|
boolean | createNewFile() 创建文件,若存在文件则不创建,不存在就创建 |
boolean | mkdir() 创建由此抽象路径名命名的目录。 |
boolean | mkdirs() 创建文件或目录,递归创建。 |
boolean | delete() 删除文件 |
@Test
public void test6() throws IOException {
File file1= new File("C:\\java\\JAVA_NOTES\\1.JavaSE\\笔记\\fileTest2.txt");
if (file1.createNewFile()) {
System.out.println("创建fileTest2.txt成功。。。。");
}
if (new File("C:\\java\\JAVA_NOTES\\1.JavaSE\\笔记\\fileTest").mkdir()) {
System.out.println("创建 fileTest目录 成功。。。。");
}
// file 目录不存在,使用mkdirs可递归创建
if (new File("C:\\java\\JAVA_NOTES\\1.JavaSE\\笔记\\file\\fileTest3.txt").mkdirs()) {
System.out.println("创建 file目录和fileTest3.txt文件 成功。。。。");
}
if(file1.exists()) {
System.out.println("文件不存在");
}else{
// 删除
file1.delete();
}
}
以上所有的操作并没有对文件进行修改,对文件的修改由 IO 流完成。一般 File 都用作参数供 IO 流使用。
流的分类
抽象基类 | 字节流 | 字符流 |
---|---|---|
输入流 | InputStream | Reader |
输出流 | OutputStream | Writer |
IO流体系结构
使用说明:
使用默认的 read()
方法:
public class FileReaderTest {
public static void main(String[] args) {
// 在主方法中,默认路径在项目工程下。
File file = new File("file/fileTest.txt");
System.out.println(file.getAbsoluteFile());
}
@Test
public void test() {
// 在单元测试中:默认路径在此模块下
File file = new File("fileTest2.txt");
FileReader fileReader = null ;
try {
fileReader = new FileReader(file);
int data;
// 读操作
while((data = fileReader.read()) != -1) {
System.out.print((char)data);
}
} catch (Exception e) {
e.printStackTrace();
}finally {
try {
// 关闭流
fileReader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
使用 read(char cbuf[])
重载方法:
// 使用 read重载方法
@Test
public void test2() {
// 在单元测试中:默认路径在此模块下
File file = new File("fileTest2.txt");
FileReader fileReader = null ;
try {
fileReader = new FileReader(file);
// 读操作
char[] cubf = new char[10];
int length ;
// read(char cbuf[]) : 返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
while((length = fileReader.read(cubf)) != -1) {
// 错误写法一:因为最后一次读到cubf的个数不足10个,因此之前的字符没有被覆盖
// for (int i = 0; i < cubf.length; i++) {
// System.out.print(cubf[i]);
// }
// 正确写法一:
// for (int i = 0; i < length; i++) {
// System.out.print(cubf[i]);
// }
// 错误写法二:
// System.out.print(new String(cubf,0,cubf.length));
// 正确写法二:
System.out.print(new String(cubf,0,length));
}
} catch (Exception e) {
e.printStackTrace();
}finally {
try {
f (fileReader != null)
// 关闭流
fileReader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
针对上面错误写法的解释:
最后一次读操作,不够 字符数组的长度,无法覆盖。
FileWriter fw = new FileWriter(file,true);
@Test
public void test() {
File file = new File("fileTest3");
FileWriter fw = null ;
try {
// 写操作
// true: 表示在文件原有内容上追加内容
// false或者不写: 表示覆盖原有文件
fw = new FileWriter(file,true);
fw.write("java\n");
fw.write("c++");
} catch (IOException e) {
e.printStackTrace();
}finally {
try {
if (fw != null)
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
@Test
public void test() {
File readFile = new File("fileTest3");
File writeFile = new File("fileTest4");
FileReader fr = null;
FileWriter fw = null;
try {
fr = new FileReader(readFile);
fw = new FileWriter(writeFile);
char[] cubf = new char[10];
int len;
//读操作
while ((len = fr.read(cubf)) != -1) {
// 写操作
fw.write(new String(cubf, 0, len));
}
} catch (Exception e) {
e.printStackTrace();
}finally {
if (fr != null) {
try {
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (fw != null) {
try {
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
结论:
图片复制:
@Test
public void test() {
File file1 = new File("1.jpg");
File file2 = new File("2.jpg");
FileInputStream fis = null ;
FileOutputStream fos = null ;
try {
fis = new FileInputStream(file1);
fos = new FileOutputStream(file2);
byte[] b = new byte[10];
int len;
while ((len = fis.read(b))!= -1) {
fos.write(b,0,len);
}
} catch (Exception e) {
e.printStackTrace();
}finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
缓冲流要“套接”在相应的节点流之上,根据数据操作单位可以把缓冲流分为:
为了提高数据读写的速度,Java API提供了带缓冲功能的流类,在使用这些流类时,会创建一个内部缓冲区数组,缺省使用8192个字节(8Kb)的缓冲区。
flush()方法的使用:刷新缓冲区
缓冲流的close()方法,不但会关闭流,还会在关闭流之前刷新缓冲区,关闭后不能再写出。
使用 BufferedInputStream 和 BufferedOutputStream 实现文件复制:
@Test
public void test() {
File file = new File("1.jpg");
File file1 = new File("3.jpg");
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
FileInputStream fis = new FileInputStream(file);
FileOutputStream fos = new FileOutputStream(file1);
// 缓冲字节流
bis = new BufferedInputStream(fis);
bos = new BufferedOutputStream(fos);
byte[] b = new byte[1024];
int len;
while ((len = bis.read(b)) != -1) {
bos.write(b, 0, len);
}
} catch (Exception e) {
e.printStackTrace();
}finally {
// 只需关闭处理流,节点流会自动关闭
if (bis != null) {
try {
bis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (bos != null) {
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
使用 BufferedReader 和 BufferedWriter 实现文件复制:
BufferedReader 中除了提供了 read 方法,还提供了一个 readLine 方法,表示:一次读取文件的一行数据。若不存在下一行,返回 null
@Test
public void test() {
BufferedReader br = null;
BufferedWriter bw = null;
try {
br = new BufferedReader(new FileReader(new File("fileTest4")));
bw = new BufferedWriter(new FileWriter(new File("fileTest5")));
char[] cbuf = new char[1024];
// 第一种方法
// int len ;
// while( (len = br.read(cbuf)) != -1) {
// bw.write(cbuf,0,len);
// }
// 第二种方法
//readLine: 一次读取文件的一行。
String data;
while ((data = br.readLine()) != null) {
bw.write(data); // data中不包含换行符
bw.newLine(); // 提供换行符
}
} catch (Exception e) {
e.printStackTrace();
}finally {
if (br != null) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (bw!= null) {
try {
bw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
封装成俩个方法:
节点流:
// 节点流实现文件复制的方法
public static void fileCopyByNodeFlow(String src,String dest) {
File file1 = new File(src);
File file2 = new File(dest);
FileInputStream fis = null ;
FileOutputStream fos = null ;
try {
fis = new FileInputStream(file1);
fos = new FileOutputStream(file2);
byte[] b = new byte[1024];
int len;
while ((len = fis.read(b))!= -1) {
fos.write(b,0,len);
}
} catch (Exception e) {
e.printStackTrace();
}finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
缓冲流:
public static void fileCopyByProcessStreams(String src,String dest) {
File file = new File(src);
File file1 = new File(dest);
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
FileInputStream fis = new FileInputStream(file);
FileOutputStream fos = new FileOutputStream(file1);
// 缓冲字节流
bis = new BufferedInputStream(fis);
bos = new BufferedOutputStream(fos);
byte[] b = new byte[1024];
int len;
while ((len = bis.read(b)) != -1) {
bos.write(b, 0, len);
}
} catch (Exception e) {
e.printStackTrace();
}finally {
// 只需关闭处理流,节点流会自动关闭
if (bis != null) {
try {
bis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (bos != null) {
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
测试:
public static void main(String[] args) {
// 测试节点流和缓冲流的速度
long start = System.currentTimeMillis();
// 节点流
// FileCopyByNodeFlow.fileCopyByNodeFlow("C:\\Users\\杨照光\\Desktop\\1.mp4","C:\\Users\\杨照光\\Desktop\\2.mp4"); // 1006
// 缓冲流
FileCopyByProcessStreams.fileCopyByProcessStreams("C:\\Users\\杨照光\\Desktop\\1.mp4","C:\\Users\\杨照光\\Desktop\\3.mp4"); //389
long end = System.currentTimeMillis();
System.out.println(end - start);
}
InputStreamReader
: 实现将字节的输入流按指定字符集转换为字符的输入流。
public InputStreamReader(InputStreamin)
public InputSreamReader(InputStreamin,StringcharsetName)
OutputStreamWriter
: 实现将字符的输出流按指定字符集转换为字节的输出流。
public OutputStreamWriter(OutputStreamout)
public OutputSreamWriter(OutputStreamout,StringcharsetName)
构造器中可指定 编码/解码 的字符集,不写就是系统默认的字符集。
写什么字符集取决于 文件 保存的时候指定的字符集。
使用转换流操作带有中文的文本文件:
使用字节流在读取中文时会出现乱码,使用转换流,用字节流读取,转换成字符流显示
@Test
public void test () {
File file = new File("fileTest3");
FileInputStream fis = null;
try {
fis = new FileInputStream(file);
// 第二个参数:编码格式,一般使用fileTest3文件保存时使用的编码
InputStreamReader isr = new InputStreamReader(fis, "UTF-8");
char[] cbuf = new char[10];
int len;
while((len = isr.read(cbuf)) != -1) {
System.out.print(new String(cbuf,0,len));
}
} catch (Exception e) {
e.printStackTrace();
}finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
使用转换流完成文件复制,并且复制完要求文件为 gbk 编码:
@Test
public void test1 () {
InputStreamReader isr = null;
OutputStreamWriter osw = null;
try {
File file1 = new File("fileTest3");
File file2 = new File("fileTest6");
FileInputStream fis = new FileInputStream(file1);
FileOutputStream fos = new FileOutputStream(file2);
// 读进来的字符集
isr = new InputStreamReader(fis,"utf-8");
// 写出去的字符集
osw = new OutputStreamWriter(fos,"gbk");
char[] cbuf = new char[1024];
int len;
while((len = isr.read(cbuf)) != -1) {
osw.write(cbuf,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
isr.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
osw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
System.in:标准的输入流,默认从键盘输入
System.out:标准的输出流,默认从控制台输出
System.in的类型是InputStream
System.out的类型是PrintStream,FilterOutputStream的子类
重定向:通过System类的setIn,setOut方法对默认设备进行改变。
练习: 从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续进行输入操作, 直至当输入“e”或者“exit”时,退出程序。
第一种方法:使用 Scanner类
第二种方法:使用 System.in System.in —> 转换流 —> BufferedReader的readLine()
public class OtherStreamsTest {
/*
*
* 练习:
* 从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续进行输入操作,
* 直至当输入“e”或者“exit”时,退出程序。
* */
public static void main(String[] args) {
BufferedReader br = null;
try {
// 转换流
InputStreamReader isr = new InputStreamReader(System.in);
// 缓冲输入流
br = new BufferedReader(isr);
while (true) {
String data = br.readLine();
if ("e".equalsIgnoreCase(data) || "exit".equals(data)) {
System.out.println("程序退出");
break;
}
System.out.println(data.toUpperCase());
}
}catch (Exception e) {
e.printStackTrace();
}finally {
if (br != null) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
实现将基本数据类型的数据格式转化为字符串输出
打印流:PrintStream和PrintWriter
提供了一系列重载的print()和println()方法,用于多种数据类型的输出
PrintStream和PrintWriter的输出不会抛出IOException异常
PrintStream和PrintWriter有自动flush功能
PrintStream 打印的所有字符都使用平台的默认字符编码转换为字节。在需要写入字符而不是写入字节的情况下,应该使用PrintWriter 类。
System.out返回的是PrintStream的实例
public class PrintStreamTest {
@Test
public void test2(){
PrintStream ps = null;
try {
FileOutputStream fos = new FileOutputStream(new File("C:\\java\\JAVA_NOTES\\1.JavaSE\\笔记\\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();
}
}
}
}
为了方便地操作Java语言的基本数据类型和String的数据,可以使用数据流。
数据流有两个类:(用于读取和写出基本数据类型、String类的数据)
DataInputStream和DataOutputStream
DataInputStream中的方法
boolean readBoolean() byte readByte()
char readChar() float readFloat()
double readDouble() short readShort()
long readLong() int readInt()
String readUTF() void readFully(byte[s] b)
DataOutputStream中的方法
将上述的方法的read改为相应的write即可。
import org.junit.Test;
import java.io.*;
public class OtherStreamTest {
/**
* 3.数据流
* 3.1 DataInputStream 和 DataOutputStream
* 3.2 作用:用于读取或写出基本数据类型的变量或字符串
*
* 练习:将内存中的字符串、基本数据类型的变量写出到文件中。
*
* 注意:处理异常的话,仍然应该使用try-catch-finally.
*/
@Test
public void test3() throws IOException {
//1.
DataOutputStream dos = new DataOutputStream(new FileOutputStream("data.txt"));
//2.
dos.writeUTF("刘刚");
dos.flush();//刷新操作,将内存中的数据写入文件
dos.writeInt(23);
dos.flush();
dos.writeBoolean(true);
dos.flush();
//3.
dos.close();
}
/**
* 将文件中存储的基本数据类型变量和字符串读取到内存中,保存在变量中。
*
* 注意点:读取不同类型的数据的顺序要与当初写入文件时,保存的数据的顺序一致!
*/
@Test
public void test4() throws IOException {
//1.
DataInputStream dis = new DataInputStream(new FileInputStream("data.txt"));
//2.
String name = dis.readUTF();
int age = dis.readInt();
boolean isMale = dis.readBoolean();
System.out.println("name = " + name);
System.out.println("age = " + age);
System.out.println("isMale = " + isMale);
//3.
dis.close();
}
}
ObjectInputStream
和OjbectOutputSteam
用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。
序列化:用ObjectOutputStream
类保存基本类型数据或对象的机制
反序列化:用ObjectInputStream
类读取基本类型数据或对象的机制
ObjectOutputStream
和ObjectInputStream
不能序列化static
和transient
修饰的成员变量
对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。//当其它程序获取了这种二进制流,就可以恢复成原来的Java对象
序列化的好处在于可将任何实现了Serializable接口的对象转化为字节数据,使其在保存和传输时可被还
序列化是RMI(Remote Method Invoke –远程方法调用)过程的参数和返回值都必须实现的机制,而RMI 是JavaEE的基础。因此序列化机制是JavaEE平台的基础
如果需要让某个对象支持序列化机制,则必须让对象所属的类及其属性是可序列化的,为了让某个类是可序列化的,该类必须实现如下两个接口之一。否则,会抛出NotSerializableException
异常
Serializable
Externalizable
序列化/反序列化字符串:
// 序列化:将内存中的 java 对象以二进制流的形式保存到硬盘上,或通过网络传输出去
// ObjectOutputStream
// 建议使用 try-catch-finally,我是为了省事。。
@Test
public void test() throws Exception {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(new File("test.bat")));
// 将 string类型数据序列化到文件中
oos.writeObject(new String("我爱中国"));
oos.flush();
oos.close();
}
// 反序列化;将硬盘上文件中的对象还原为内存中的java对象
// ObjectInputStream。
@Test
public void test2() throws Exception {
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(new File("test.bat")));
String s =(String) ois.readObject();
System.out.println(s);
ois.close();
}
序列化/反序列化自定义对象:
要求自定义类实现 Serializable 接口,并定义序列化版本号 serialVersionUID
User类:
public class User implements Serializable {
// 序列化号:该类的标识、
private static final long serialVersionUID = 23664543L;
private String name;
private int age ;
public User() {
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
", age=" + age +
'}';
}
public void setName(String name) {
this.name = name;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
public User(String name, int age) {
this.name = name;
this.age = age;
}
}
序列化、反序列化过程:
@Test
public void test() throws Exception {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(new File("test.bat")));
// 将 string类型数据序列化到文件中
// oos.writeObject(new String("我爱中国"));
// 序列化自定义类
oos.writeObject(new User("lisi",22));
oos.flush();
oos.close();
}
// 反序列化;将硬盘上文件中的对象还原为内存中的java对象
// ObjectInputStream。
@Test
public void test2() throws Exception {
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(new File("test.bat")));
// String s =(String) ois.readObject();
User user = (User) ois.readObject();
System.out.println(user);
ois.close();
}
凡是实现Serializable
接口的类都有一个表示序列化版本标识符的静态常量:
private static final long serialVersionUID
;
serialVersionUID
用来表明类的不同版本间的兼容性。简言之,其目的是以序列化对象进行版本控制,有关各版本反序列化时是否兼容。
如果类没有显示定义这个静态常量,它的值是Java运行时环境根据类的内部细节自动生成的。若类的实例变量做了修改,serialVersionUID
可能发生变化。故建议,显式声明。
简单来说,Java的序列化机制是通过在运行时判断类的 serialVersionUID 来验证版本一致性的。在进行反序列化时,JVM会把传来的字节流中的 serialVersionUID 与本地相应实体类的 serialVersionUID 进行比较,如果相同就认为是一致的,可以进行反序列化,否则就会出现序列化版本不一致的异常。(InvalidC astException)
RandomAccessFile
声明在java.io
包下,但直接继承于java.lang.Object
类。并且它实现了DataInput、DataOutput
这两个接口,也就意味着这个类既可以读也可以写。public RandomAccessFile(Filefile, Strin gmode)
public RandomAccessFile(Stringname, String mode)
r
: 以只读方式打开rw
:打开以便读取和写入rwd
:打开以便读取和写入;同步文件内容的更新rws
:打开以便读取和写入;同步文件内容和元数据的更新r
。则不会创建文件,而是会去读取一个已经存在的文件,如果读取的文件不存在则会出现异常。如果模式为rw
读写。如果文件不存在则会去创建文件,如果存在则不会创建。如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建。 如果写出到的文件存在,则会对原有文件内容进行覆盖。(默认情况下,从头覆盖)
@Test
public void test2() throws IOException {
RandomAccessFile raf1 = new RandomAccessFile("hello.txt","rw");
raf1.write("xyz".getBytes());
raf1.close();
}
RandomAccessFile
对象包含一个记录指针,用以标示当前读写处的位置。RandomAccessFile
类对象可以自由移动记录指针:
long getFilePointer()
:获取文件记录指针的当前位置void seek(long pos)
:将文件记录指针定位到pos位置 @Test
public void test2() throws IOException {
RandomAccessFile raf1 = new RandomAccessFile("hello.txt","rw");
// 将指针跳到角标为3的位置上
raf1.seek(3);
raf1.write("xyz".getBytes());
raf1.close();
}
Java NIO (New IO,Non-Blocking IO)是从Java 1.4版本开始引入的一套新的IO API,可以替代标准的Java IO API。NIO与原来的IO有同样的作用和目的,但是使用的方式完全不同,NIO支持面向缓冲区的(IO是面向流的)、基于通道的IO操作。NIO将以更加高效的方式进行文件的读写操作。
Java API中提供了两套NIO,一套是针对标准输入输出NIO,另一套就是网络编程NIO。
随着JDK 7 的发布,Java对NIO进行了极大的扩展,增强了对文件处理和文件系统特性的支持,以至于我们称他们为NIO.2
。因为NIO 提供的一些功能,NIO已经成为文件处理中越来越重要的部分。
早期的Java只提供了一个File类来访问文件系统,但File类的功能比较有限,所提供的方法性能也不高。而且,大多数方法在出错时仅返回失败,并不会提供异常信息。
NIO. 2
为了弥补这种不足,引入了Path
接口,代表一个平台无关的平台路径,描述了目录结构中文件的位置。Path可以看成是File类的升级版本,实际引用的资源也可以不存在。
在以前IO操作都是这样写的:
import java.io.File;
File file = new File(“index.html”);
但在Java7 中,我们可以这样写:
import java.nio.file.Path;
import java.nio.file.Paths;
Path path = Paths.get(“index.html”);
java.nio.file
包下还提供了Files、Paths
工具类,Files
包含了大量静态的工具方法来操作文件;Paths
则包含了两个返回Path
的静态工厂方法。Paths
类提供的静态get()
方法用来获取Path
对象:
static Pathget(String first, String … more)
: 用于将多个字符串串连成路径static Path get(URI uri)
: 返回指定uri对应的Path路径Path 接口
FIles类