Java基础
十六、IO流
文件
文件:保存数据的地方,如大家经常使用的word文档,execl文件等
文件流
文件在程序中是以流的形式来操作的
流:数据在数据源(文件)和程序(内存)之间 经历的路径
输入流:数据从数据源(文件)到程序(内存)的路径
输出流:数据从程序(内存)到数据源(文件)的路径
常用的文件操作
package com.Chapter11.File_;
import org.junit.jupiter.api.Test;
import java.io.File;
import java.io.IOException;
public class File01 {
public static void main(String[] args) {
}
//方式1 new File(String pathname
@Test
public void create01() throws IOException {
String path = "E:\\news1.txt";
File file = new File(path);
file.createNewFile();
System.out.println("文件创建成功");
}
//方式2:new File(File parent,String child)
// 根据父目录文件+子路径创建
@Test
public void create02() throws IOException {
File parentfile = new File("e:\\");
String fileName = "news2.txt";
//这里的file对象,在Java程序中,只是一个对象
//只有执行createNewFile方法,才会真正的,在磁盘创建该对象
File file = new File(parentfile, fileName);
file.createNewFile();
System.out.println("文件创建成功");
}
//方式3: new File(String parent,String child)
//根据父目录+子路径构建
@Test
public void create03() throws IOException {
String parentPath = "e:\\";
String fileName = "news3.txt";
File file = new File(parentPath, fileName);
file.createNewFile();
System.out.println("创建成功~~");
}
}
获取文件的相关信息
- getName
- getAbsolutePath
- getParent
- length
- exists
- isFile
- isDirectory
目录操作
-
mkdir:创建一级目录
-
mkdirs创建多级目录
-
delete删除目录或文件
IO流原理及流的分类
IO流原理
1)I/O是Input/Output的缩写,I/O技术是非常实用的技术,用于处理数据传输,如读/写文件,网络通讯等
2)Java程序中,对于数据的输入/输出操作以"流(stream)"的方式进行
3)java.io包下提供了各种"流"类和接口,用以获取不同种类的数据,并通过方法输入或输出数据
4)输入input:读取外部数据(磁盘、光盘等存储设备的数据)到程序(内存)中
5)输出output:将程序(内存)数据输出到磁盘、光盘等存储设备中
流的分类
IO流体系图 - 常用的类
InputStream
InputStream抽象类是所有类字节输入流的超类
InputStream常用的子类
- FileInputStream:文件输入流
- BufferedInputStream:缓冲字节输入流
- ObjectInputStream:对象字节输入流
FileInputStream
package com.Chapter11.InputStream_;
import org.junit.jupiter.api.Test;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
//演示FileInputStream的使用(字节输入流 文件->程序)
public class FileInputStream01 {
public static void main(String[] args) {
}
@Test
public void readFile(){
String file = "E:\\hello.txt";
int readData = 0;
FileInputStream fileInputStream = null;
try {
//创建FileInputStream对象,用于读取文件
fileInputStream = new FileInputStream(file);
//从该输入流读取一个字节的数据,如果b 没有输入可用,此方法将阻止
//如何返回-1,表示读取完毕
while((readData = fileInputStream.read()) != -1){
System.out.print((char) readData);
}
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new RuntimeException(e);
}finally {
try {
fileInputStream.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
@Test
public void readFile02(){
String file = "E:\\hello.txt";
int readData = 0;
//字节数组
byte[] buf = new byte[8];//一次读取8个字节
FileInputStream fileInputStream = null;
try {
//创建FileInputStream对象,用于读取文件
fileInputStream = new FileInputStream(file);
//从该输入流读取一个字节的数据,如果b 没有输入可用,此方法将阻止
//如何返回-1,表示读取完毕
//如果读取正常,返回实际读取的字节数
while((readData = fileInputStream.read(buf)) != -1){
System.out.print((new String(buf,0,readData)));
}
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new RuntimeException(e);
}finally {
try {
//关闭文件,释放资源
fileInputStream.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
}
FileOutputStream
package com.Chapter11.OutputStream_;
import org.junit.jupiter.api.Test;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class OutputStream01 {
public static void main(String[] args) {
}
//演示使用FileOutputStream将数据写到文件中
//如果该文件不存在,则创建文件
@Test
public void writeFile(){
//创建FileOutputStream对象
String filePath = "E:\\a.txt";
FileOutputStream fileOutputStream = null;
try {
//得到FileOutputStream对象
//1. new FileOutputStream(filePath) 创建方式,当写入内容是,会覆盖原来的内容
//2. new FileOutputStream(filePath, true) 创建方式,当写入内容是,是追加到文件后面
fileOutputStream = new FileOutputStream(filePath);
//写入一个字节
fileOutputStream.write('a');
//写入字符串
String str = "hello,world";
//str.getByte() 可以把字符串->字节数组
fileOutputStream.write(str.getBytes());
fileOutputStream.write(str.getBytes(),0,str.length());
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new RuntimeException(e);
} finally {
try {
fileOutputStream.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
}
FileReader和FileWriter介绍
/**
* 单个字符读取文件
*/
@Test
public void readFile01() {
String filePath = "e:\\story.txt";
FileReader fileReader = null;
int data = 0;
//1. 创建FileReader 对象
try {
fileReader = new FileReader(filePath);
//循环读取使用read, 单个字符读取
while ((data = fileReader.read()) != -1) {
System.out.print((char) data);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fileReader != null) {
fileReader.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
/**
* 字符数组读取文件
*/
@Test
public void readFile02() {
System.out.println("~~~readFile02 ~~~");
String filePath = "e:\\story.txt";
FileReader fileReader = null;
int readLen = 0;
char[] buf = new char[8];
//1. 创建FileReader 对象
try {
fileReader = new FileReader(filePath);
//循环读取使用read(buf), 返回的是实际读取到的字符数
//如果返回-1, 说明到文件结束
while ((readLen = fileReader.read(buf)) != -1) {
System.out.print(new String(buf, 0, readLen));
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fileReader != null) {
fileReader.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
字节流和处理流
基本介绍
字节流:
处理流:
节点流和处理流的区别和联系
1)节点流是底层流/低级流,直接跟数据源相接
2)处理流(包装流)包装节点流,既可以消除不同结点流的实现差异,也可以提供更方便的方法来完成输入输出
3)处理流对节点流进行包装,使用了修饰器设计模式,不会直接与数据源相连
处理流的功能主要体现在以下两个方面:
- 性能的提高:主要以增加缓存的方式来提高输入输出的效率
- 操作的便捷:处理流可能提供了一系列便捷的方法来一次输入输出大批量的数据,使用更加灵活方便
处理流-BufferedReader 和BufferedWriter
-
BufferedReader和BufferedWriter均属于字符流,是按照字符来读取数据的
-
关闭处理流时,只需关闭外层流即可
package com.Chapter11.BufferReader_;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
//使用BufferedReader读取文件,并显示在控制台
public class BufferReader01 {
public static void main(String[] args) throws Exception {
String filePath = "E:\\a.txt";
//创建bufferedReader
BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath));
//读取
String line; //按行读取
//1.bufferedReader.readLine()是按行读取文件
//2.当返回null时,表示文件读取完毕
while((line = bufferedReader.readLine())!=null){
System.out.println(line);
}
//关闭流时,只需要关闭BufferedReader,因为底层会自动去关闭节点流
bufferedReader.close();
}
}
处理流-BufferedInputStream 和BufferedOutputStream
BufferedInputStream
BufferedOutputStream
对象流-ObjectInputStream 和ObjectOutputStream
ObjectOuputStream
ObjectOutputStream 的使用, 完成数据的序列化
public static void main(String[] args) throws Exception {
//序列化后,保存的文件格式,不是存文本,而是按照他的格式来保存
String filePath = "e:\\data.dat";
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(filePath));
//序列化数据到e:\data.dat
oos.writeInt(100);// int -> Integer (实现了Serializable)
oos.writeBoolean(true);// boolean -> Boolean (实现了Serializable)
oos.writeChar('a');// char -> Character (实现了Serializable)
oos.writeDouble(9.5);// double -> Double (实现了Serializable)
oos.writeUTF("韩顺平教育");//String
//保存一个dog 对象
oos.writeObject(new Dog("旺财", 10, "日本", "白色"));
oos.close();
System.out.println("数据保存完毕(序列化形式)");
}
ObjectIntputStream
使用ObjectInputStream,读取文件并反序列化恢复数据
// 1.创建流对象
ObjectInputStream ois = new ObjectInputStream(new FileInputStream("src\\data.dat"));
// 2.读取, 注意顺序
System.out.println(ois.readInt());
System.out.println(ois.readBoolean());
System.out.println(ois.readChar());
System.out.println(ois.readDouble());
System.out.println(ois.readUTF());
System.out.println(ois.readObject());
System.out.println(ois.readObject());
System.out.println(ois.readObject());
// 3.关闭
ois.close();
System.out.println("以反序列化的方式读取(恢复)ok~");
注意事项和细节说明
1)读写顺序一致
2)要求序列化或反序列化对象,需要实现Serializable
3)序列化的类中建议添加SerialVersionUID,为了提高版本的兼容性
4)序列化对象时,默认将里面所有属性都进行序列化,但除了static或transient修饰的成员
5)序列化对象时,要求里面属性的类型也需要实现序列化接口
6)序列化具备可继承性,也就是如果某类已经实现了序列化,则它的所有子类也已经默认实现了序列化
标准输入输出流
介绍
转换流-InputStreamReader 和OutputStreamWriter
介绍:
1)InputStreamReader:Reader的子类,可以将InputStream(字节流)包装成Reader(字符流)
2)OutpStreamWriter:Writer的子类,实现将OutputStream(字节流)包装成Writer(字符流)
3)当处理纯文本数据时,如果使用字符流效率更高,并且可以有效解决中文问题,所以建议将字节流转换成字符流
4)可以在使用时指定编码格式(比如utf-8,gbk,gb2312等)
String filePath = "e:\\a.txt";
//解读
//1. 把FileInputStream 转成InputStreamReader
//2. 指定编码gbk
//InputStreamReader isr = new InputStreamReader(new FileInputStream(filePath), "gbk");
//3. 把InputStreamReader 传入BufferedReader
//BufferedReader br = new BufferedReader(isr);
//将2 和3 合在一起
BufferedReader br = new BufferedReader(new InputStreamReader(
new FileInputStream(filePath), "gbk"));
//4. 读取
String s = br.readLine();
System.out.println("读取内容=" + s);
//5. 关闭外层流
br.close();
把字符流转换为字节流,然后再加入到BufferedReader
打印流-PrintStream 和PrintWriter
打印流只有输出流,没有输入流
public class PrintStream_ {
public static void main(String[] args) throws IOException {
PrintStream out = System.out;
//在默认情况下,PrintStream 输出数据的位置是标准输出,即显示器
/*
public void print(String s) {
if (s == null) {
s = "null";
}
write(s);
}
*/
out.print("john, hello");
//因为print 底层使用的是write , 所以我们可以直接调用write 进行打印/输出
out.write("韩顺平,你好".getBytes());
out.close();
//我们可以去修改打印流输出的位置/设备
//1. 输出修改成到"e:\\f1.txt"
//2. "hello, 韩顺平教育~" 就会输出到e:\f1.txt
//3. public static void setOut(PrintStream out) {
// checkIO();
// setOut0(out); // native 方法,修改了out
// }
System.setOut(new PrintStream("e:\\f1.txt"));
System.out.println("hello, 韩顺平教育~");
}
}
printWriter.print("hi, 北京你好~~~~");
printWriter.close();//flush + 关闭流, 才会将数据写入到文件..
Properties类
传统的方法:
package com.Chapter11.Properties_;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class Properties01 {
public static void main(String[] args) throws IOException {
//读取mysql.properties文件
BufferedReader br = new BufferedReader(new FileReader("src\\mysql.properties"));
String line = "" ;
while((line = br.readLine() )!= null){
String[] split = line.split("=");
System.out.println(split[0] + "值是:" + split[1]);
}
br.close();
}
}
基本介绍
1)专门用于读写配置文件的集合类
配置文件格式:
键 = 值
2)注意:键值对不需要有空格,值不需要用引号一起来,默认类型是String
3)Properties常见方法
- load:加载配置文件的键值对到Properties对象
- list:将数据显示到指定设备
- getProperty(key):根据键获取值
- setProperty(key,value):设置键值对到Properties对象中
- store:将properties中的键值对存储到配置文件中,保存信息到配置文件,如果含有中文,会存储为unicode码
package com.Chapter11.Properties_;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.Properties;
public class Properties01 {
public static void main(String[] args) throws IOException {
//使用Properties 类来读取mysql.properties 文件
//1. 创建Properties 对象
Properties properties = new Properties();
//2. 加载指定配置文件
properties.load(new FileReader("src\\mysql.properties"));
//3. 把k-v 显示控制台
properties.list(System.out);
//4. 根据key 获取对应的值
String user = properties.getProperty("user");
String pwd = properties.getProperty("pwd");
System.out.println("用户名=" + user);
System.out.println("密码是=" + pwd);
}
}
public class Properties03 {
public static void main(String[] args) throws IOException {
//使用Properties 类来创建配置文件, 修改配置文件内容
Properties properties = new Properties();
//创建
//1.如果该文件没有key 就是创建
//2.如果该文件有key ,就是修改
/*
Properties 父类是Hashtable , 底层就是Hashtable 核心方法
public synchronized V put(K key, V value) {
// Make sure the value is not null
if (value == null) {
throw new NullPointerException();
}
// Makes sure the key is not already in the hashtable.
Entry<?,?> tab[] = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K,V> entry = (Entry<K,V>)tab[index];
for(; entry != null ; entry = entry.next) {
if ((entry.hash == hash) && entry.key.equals(key)) {
V old = entry.value;
entry.value = value;
return old;
}
}
addEntry(hash, key, value, index);
return null;
}
*/
properties.setProperty("charset", "utf8");
properties.setProperty("user", "汤姆");//注意保存时,是中文的unicode 码值
properties.setProperty("pwd", "888888");
//将k-v 存储文件中即可
properties.store(new FileOutputStream("src\\mysql2.properties"), null);
System.out.println("保存配置文件成功~");
}