【代码示例】
@Test
public void test1(){
//构造器1
File file1 = new File("hello.txt");//相对路径;
File file2 = new File("D:\\idea2019\\ideaproject\\JavaAdvance\\forIO\\xxx.txt");//绝对路径;
System.out.println(file1); //只是在内存的一个对象,输出的是构造器的参数;即把地址打印;
System.out.println(file2);
//构造器2
File file3 = new File("D:\\idea2019\\ideaproject", "JavaAdvance");
System.out.println(file3);
//构造器3
File file4 = new File(file3, "hi.txt");
System.out.println(file4);
}
【说明】
如下两个方法使用于文件目录:
public String[] list() :获取指定目录下的所有文件或者文件目录的名称数组;
public File[] listFiles() :获取指定目录下的所有文件或者文件目录的File数组;
public void test3(){
File file = new File("D:\\project\\Java");
String[] list = file.list();
for (String string : list) {
System.out.println(string);
}
File[] files = file.listFiles();
for (File file1 : files) {
System.out.println(file1);
}
public boolean renameTo(File dest):把文件重命名为指定的文件路径;(剪切粘贴重命名)
【注意】file1.renameTo(file2)为例:要想保证返回true,需要file1在硬盘中是存在的,且file2不能在硬盘中存在;
【代码示例】
@Test
public void test4(){
File file1 = new File("hi.txt");
File file2 = new File("C:\\Users\\xx\\Desktop\\Good.txt");
boolean renameTo = file1.renameTo(file2);
System.out.println(renameTo);
}
创建文件\目录到磁盘中;
代码示例:
@Test
public void test6() throws IOException {
File file1 = new File("hello.txt");
if (!file1.exists()){
file1.createNewFile();
System.out.println("创建成功!");
}else {
file1.delete();
System.out.println("删除成功!");
}
}
@Test
public void test(){
File file1 = new File("C:\\Users\\xx\\Desktop\\Good");
boolean mkdir = file1.mkdir();
if (mkdir) {
System.out.println("创建成功!");
}
}
删除磁盘中的文件或文件目录;Java中的删除不走回收站;
public boolean delete():删除文件或者文件夹;
【如果删除的目录有子目录或文件,则不能删除】
【说明】
1. 按操作数据单位分:字节流(byte)、字符流(char)
2. 按数据的流向分:输入流、输出流
站在内存的角度看输入输出;
3. 按流的角色分:节点流、处理流
以InputStream结尾的都是字节输入流;以OutputStream结尾的都是字节输出流;
以Reader结尾的都是字符输入流;以Writter结尾的都是字符输出流;
访问文件的是字节流;其他是处理流;
抽象基类 | 节点流(或文件流) | 缓冲流(处理流的一种) |
---|---|---|
InputStream | FileInputStream (read(byte[] buffer)) | BufferedInputStream (read(byte[] buffer)) |
OutputSteam | FileOutputStream (write(byte[] buffer,0,len) | BufferedOutputStream (write(byte[] buffer,0,len) / flush() |
Reader | FileReader (read(char[] cbuf)) | BufferedReader (read(char[] cbuf) / readLine()) |
Writer | FileWriter (write(char[] cbuf,0,len) | BufferedWriter (write(char[] cbuf,0,len) / flush() |
Java的lO流共涉及40多个类,实际上非常规则,都是从如下4个抽象基类派生的;由这四个类派生出来的子类名称都是以其父类名作为子类名后缀;
抽象基类 | 字节流 | 字符流 |
---|---|---|
输入流 | InputSteam | Reader |
输出流 | OutputSteam | Writer |
InputStream和Reader是所有输入流的基类(将文件读取到(输入)到内存);
【InputSteam常用方法】
字节输入流;常用实现类:FileInputStream;
int read();
从输入流中读取数据的下一个字节。返回0到255范围内的int字节值。如果因为已经到达流末尾而没有可用的字节,则返回值-1;
int read(byte[] b);
从此输入流中将最多b.length个字节的数据读入一个byte数组中。如果因为已经到达流末尾而没有可用的字节,则返回值-1.否则以整数形式返回实际读取的字节数;
int read(byte[] b,int off,int len);
将输入流中最多len个数据字节读入byte数组。尝试读取len个字节,但读取的字节也可能小于该值。以整数形式返回实际读取的字节数。如果因为流位于文件末尾而没有可用的字节,则返回值-1;
public void close() throws IOException;
关闭此输入流并释放与该流关联的所有系统资源;
【Reader常用方法】
字符输入流;常用实现类:FileReader;
int read();
读取单个字符。作为整数读取的字符,范围在0到65535之间(0x00-0xffff)(2个字节的 Unicode码),如果已到达流的末尾,则返回-1;
int read(char[] cbuf);
将字符读入数组。如果已到达流的末尾,则返回-1。否则返回本次读取的字符数;
int read(char[] cbuf,int off,int len);
将字符读入数组的某一部分。存到数组cbuf中,从off处开始存储,最多读len个字符。如果已到达流的末尾,则返回-1。否则返回本次读取的字符数;
public void close() throws IOException;
关闭此输入流并释放与该流关联的所有系统资源;
【说明】
【OutputStream常用方法】
void write(int b);
将指定的字节写入此输出流。 write的常规协定是:向输出流写入一个字节。要写入的字节是参数b的八个低位。b的24个高位将被忽略。即写入0~255范围的;
void write(byte[] b);
将b.length个字节从指定的byte数组写入此输出流。write(b)的常规协定是:应该与调用wite(b,0,b.length)的效果完全相同;
void write(byte[] b,int off,int len);
将指定byte数组中从偏移量off开始的len个字节写入此输出流;
public void flush()throws IOException;
刷新此输出流并强制写出所有缓冲的输出字节,调用此方法指示应将这些字节立即写入它们预期的目标;
public void close() throws IOException;
关闭此输岀流并释放与该流关联的所有系统资源。需要先刷新,再关闭此流;
【Writer常用方法】
void write(int c);
写入单个字符。要写入的字符包含在给定整数值的16个低位中,16高位被忽略。即写入0到65535之间的 Unicode码;
void write(char[] cbuf);
写入字符数组;
void write(char[] cbuf,int off,int len);
写入字符数组的某一部分。从off开始,写入len个字符;
void write(String str);
写入字符串;
void write(String str,int off,int len);
写入字符串的某一部分;
void flush();
刷新该流的缓冲,则立即将它们写入预期目标;
public void close() throws IOException;
关闭此输出流并释放与该流关联的所有系统资源;
【说明】
创建File类的对象,指明读取的数据的来源;(要求此文件一定要存在);
创建相应的输入流,将File类的对象作为参数,传入流的构造器中;
具体的读入过程:创建相应的byte[] 或 char[];
关闭流资源;
说明:程序中出现的异常需要使用try-catch-finally处理;
创建File类的对象,指明写出的数据的位置;(不要求此文件一定要存在);
创建相应的输出流,将File类的对象作为参数,传入流的构造器中;
具体的写出过程:write(char[]/byte[] buffer,0,len);
关闭流资源;
说明:程序中出现的异常需要使用try-catch-finally处理;
文件流都是节点流;
文件字符流;
文件的输入,从硬盘的文件中读取到内存(程序)中;
【代码示例】
@Test
public void testFileReader1() {
FileReader fr = null;
try {
//1.File类的实例化
File file = new File("hello.txt");
//2.FileReader流的实例化
fr = new FileReader(file);
//3.读入的操作
//read(char[] cbuf):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
char[] cbuf = new char[5];
int len;
while((len = fr.read(cbuf)) != -1){
String str = new String(cbuf,0,len);
System.out.print(str);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if(fr != null){
//4.资源的关闭
try {
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
读入的文件一定要存在,否则就会报FileNotFoundException;
文件的输出;从内存(程序)到硬盘文件中;
【代码示例】
@Test
public void testFileWriter() {
FileWriter fw = null;
try {
//1.提供File类的对象,指明写出到的文件
File file = new File("hello1.txt");
//2.提供FileWriter的对象,用于数据的写出
fw = new FileWriter(file,false);
//3.写出的操作
fw.write("AAAAA\n");
fw.write("BBBBB");
} catch (IOException e) {
e.printStackTrace();
} finally {
//4.流资源的关闭
if(fw != null){
try {
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
【说明】
输出操作,对应的File可以不存在的,并不会报异常;
File对应的硬盘中的文件如果不存在,在输出的过程中,会自动创建此文件;
如果存在:
【实现文本文件的复制操作】
@Test
public void testFileReaderFileWriter() {
FileReader fr = null;
FileWriter fw = null;
try {
//1.创建File类的对象,指明读入和写出的文件
File srcFile = new File("hello.txt");
File destFile = new File("hello2.txt");
//不能使用字符流来处理图片等字节数据;
// File srcFile = new File("图片.jpg");
// File destFile = new File("图片1.jpg");
//2.创建输入流和输出流的对象
fr = new FileReader(srcFile);
fw = new FileWriter(destFile);
//3.数据的读入和写出操作
char[] cbuf = new char[5];
int len;//记录每次读入到cbuf数组中的字符的个数
while((len = fr.read(cbuf)) != -1){
//每次写出len个字符
fw.write(cbuf,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
//4.关闭流资源
try {
if(fw != null)
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
if(fr != null)
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
文件字节流操作与字符流操作类似,只是实例化对象操作和数据类型不同;
【代码示例】
类似的代码不再赘述;
//1. 造文件
File file = new File("hello.txt");
//2.造流
fis = new FileInputStream(file);
//3.读数据
byte[] buffer = new byte[5];
int len;//记录每次读取的字节的个数
while((len = fis.read(buffer)) != -1){
String str = new String(buffer,0,len);
System.out.print(str);
}
//4.关闭流资源
使用字节流FileInputStream处理文本文件,可能出现乱码;
【实现图片文件复制操作】
FileInputStream fis = null;
FileOutputStream fos = null;
try {
//1.创建File对象
File srcFile = new File("图片.jpg");
File destFile = new File("图片2.jpg");
//2.创建字节流
fis = new FileInputStream(srcFile);
fos = new FileOutputStream(destFile);
//3.复制的过程
byte[] buffer = new byte[5];
int len;
while((len = fis.read(buffer)) != -1){
fos.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
//4.关闭流。。。
}
【一般来说】
RandomAccessFile;输入输出、节点、字节流;
【概述】
【构造器】
public RandomAccessFile(File file,String mode);
public RandomAccessFile(String name,String mode);
【使用】
【代码示例】
文件的读取和写出操作;
@Test
public void test1() {
RandomAccessFile raf1 = null;
RandomAccessFile raf2 = null;
try {
//1.创建对象,创建流;
raf1 = new RandomAccessFile(new File("图片.jpg"),"r");
raf2 = new RandomAccessFile(new File("图片3.jpg"),"rw");
//2.操作流;
byte[] buffer = new byte[1024];
int len;
while((len = raf1.read(buffer)) != -1){
raf2.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
//3.关闭流,略;
}
}
【相关类】
【作用】
作用:提供流的读取、写入的速度
提高读写速度的原因:内部提供了一个缓冲区。默认情况下是8kb;
【说明】
【代码示例】
使用BufferInputStream和BufferOutputStream实现非文本文件的复制;
@Test
public void testBufferedStream(){
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
//1.造文件
File srcFile = new File("视频.avi");
File destFile = new File("视频1.avi");
//2.造流
//2.1造节点流
FileInputStream fis = new FileInputStream(srcFile);
FileOutputStream fos = new FileOutputStream(destFile);
//2.2造缓冲流,可以合并书写
bis = new BufferedInputStream(fis);
bos = new BufferedOutputStream(fos);
//3.文件读取、写出操作
byte[] buffer = new byte[1024];
int len;
while ((len = bis.read(buffer)) != -1){
bos.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
//4.关闭流
if (bos != null){
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (bis != null){
try {
bis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
【代码示例】
使用BufferedReader和BufferedWriter实现文本文件的复制;
@Test
public void testBufferedReaderBufferedWriter(){
BufferedReader br = null;
BufferedWriter bw = null;
try {
//创建文件和相应的流
br = new BufferedReader(new FileReader(new File("hello.txt")));
bw = new BufferedWriter(new FileWriter(new File("dbcp1.txt")));
//读写操作
//方式一:使用char[]数组
//char[] cbuf = new char[1024];
//int len;
//while((len = br.read(cbuf)) != -1){
//bw.write(cbuf,0,len);
//}
//方式二:使用String
String data;
while((data = br.readLine()) != null){
//方法一:
// bw.write(data + "\n");data中不包含换行符
//方法二:
bw.write(data);//data中不包含换行符
bw.newLine();//提供换行的操作
}
} catch (IOException e) {
e.printStackTrace();
} finally {
//关闭资源 略。。
}
}
【概述】
InputStreamReader将一个字节的输入流转换为字符的输入流;
【构造器】
OutputStreamWriter将一个字符的输出流转换为字节的输出流 ;
【构造器】
【代码示例】
@Test
public void test1() {
InputStreamReader isr = null;
OutputStreamWriter osw = null;
try {
//1.造文件、造流
File file1 = new File("hello.txt");
File file2 = new File("hello_gbk.txt");
FileInputStream fis = new FileInputStream(file1);
FileOutputStream fos = new FileOutputStream(file2);
isr = new InputStreamReader(fis, "utf-8");
osw = new OutputStreamWriter(fos, "gbk");
//2.读写过程
char[] cbuf = new char[20];
int len;
while ((len = isr.read(cbuf)) != -1){
osw.write(cbuf,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
//3.关流,同样只需关闭最外层的流即可,略;
}
}
注意,InputStreamReader构造器中指定的字符集需要和读取的文件的字符集相同;
ObjectInputStream 和 ObjectOutputStream;处理流,字节流;
【作用】
【对象序列化机制】
【条件】
实现序列化的类需要满足以下要求:
【注意】
ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量;
【代码示例】
序列化:将对象写入磁盘或进行网络传输;可以把内存的对象持久化;
要求被序列化对象必须实现序列化;
@Test
public void testObjectOutputStream(){
ObjectOutputStream oos = null;
try {
//1.创建对象,创建流
oos = new ObjectOutputStream(new FileOutputStream("object.dat"));
//2.操作流
oos.writeObject(new String("序列化操作"));
oos.flush();//刷新操作
oos.writeObject(new Person("张三",20));
oos.flush();
oos.writeObject(new Person("李四",20,1001,new Account(5000)));
oos.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
if(oos != null){
//3.关闭流
try {
oos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
【代码示例】
反序列化:将磁盘的对象数据源读出;
@Test
public void testObjectInputStream(){
ObjectInputStream ois = null;
try {
ois = new ObjectInputStream(new FileInputStream("object.dat"));
Object obj = ois.readObject();
String str = (String) obj;
Person p = (Person) ois.readObject();
Person p1 = (Person) ois.readObject();
System.out.println(str);
System.out.println(p);
System.out.println(p1);
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} finally {
if(ois != null){
try {
ois.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
【实际开发中,可以使用apache的commons-io 第三方jar包,来实现文件的输入输出操作;】