# File 类
# 构建的三种方法
| File f1 = new File("//Users//baozi//a.txt"); |
| System.out.println(f1); |
| File f2 = new File("//Users//baozi","a.txt"); |
| System.out.println(f2); |
| File f3 = new File("//Users//baozi"); |
| File f4 = new File(f3,"a.txt"); |
| System.out.println(f4); |
- 两个反斜线为了转义
- 构造 File 类知识存储路径(抽象存在),不会创建对应的文件
# File 类创建功能
- 不存在时创建新空文件:
public boolean createNewFile()
- 相对路径:默认与模块同一级别,在项目路径下
- 创建响应目录:
public boolean mkdir()
- 创建响应目录及其父目录:
public boolean mkdirs()
| File f1 = new File("//Users//baozi//a.txt"); |
| try { |
| System.out.println(f1.createNewFile()); |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } |
| File f2 = new File("//Users//baozi//a"); |
| System.out.println(f2.mkdir()); |
| File f3 = new File("//Users//baozi//a//b"); |
| System.out.println(f3.mkdirs()); |
# File 类的删除方法
public boolean delete()
:删除空文件夹或文件
# File 类的判断与获取方法
- 判断目录:
public boolean isDirectory
- 判断文件:
public boolean isFile()
- 判断存在:
public boolean exists()
- 返回绝对路径:
public String getAbsolutePath()
- 返回构建时的路径:
public String getPath()
- 返回目录,文件名:
public String getName()
- 返回目录下文件 / 目录的数组:
public String[] list()
- 返回目录下文件 / 目录的 File:
public File[] listFiles()
# 遍历目录
| public class File01 { |
| static File f = new File("//Users//baozi//Desktop"); |
| static int i = 0; |
| public static void main(String[] args) { |
| dfs(f); |
| } |
| public static void dfs(File f) { |
| File[] files = f.listFiles(); |
| for(File file : files) { |
| if(file.isFile()) { |
| System.out.println( ++i + "." + file.getName() + ":" + file.getAbsoluteFile()); |
| } else { |
| dfs(file); |
| } |
| } |
| } |
| } |
# I/O 流
- IO 流:输入输出
- 流:数据传输
- 用途:处理设备间的数据传输
- 分类:
- 流向:
- 输入流:读数据
- 输出流:写数据
- 数据类型:
- 字节流:其他格式
- 字符流:文本格式
# 字节流
# 字节流抽象基类
- InputStream:输入流超类
- OutputStream:输出流超类
- 子类名特点:以基类名为后缀
# 字节流写数据
| |
| FileOutputStream fos = new FileOutputStream("//Users//baozi//a.txt"); |
| |
| |
| |
| |
| |
| |
| fos.close(); |
| |
| |
| |
| FileOutputStream fos = null; |
| try { |
| fos = new FileOutputStream("//Users//baozi//a.txt"); |
| fos.write("123456".getBytes(StandardCharset.UTF-8)); |
| } catch (FileNotFoundException e) { |
| e.printlnStackTrace(e); |
| } catch (IOException e) { |
| e.printlnStackTrace(e); |
| } finally { |
| if(fos != null) { |
| try { |
| fos.close(); |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } |
| } |
| } |
# 字节流读数据
| |
| FileInputStream fis = new FileInputStream("//Users//baozi//a.txt"); |
| |
| |
| int by; |
| while ((by = fis.read()) != -1) { |
| System.out.println(by); |
| } |
| |
| byte[] bys = new byte[1024]; |
| int len; |
| while((len = fis.read(bys)) != -1) { |
| System.out.println(new String(bys,0,len)); |
| } |
| |
# 字节缓冲流
- 作用:将数据写入缓冲区,一次性输出,提高效率 –> 字节缓冲流 + 一次读写一个字节数组:最快
- 字节缓冲输出流:
BufferedOutputstream(Outputstream out)
- 字节缓冲输入流:
BufferedInputstream(Inputstream in)
- 建议使用匿名对象
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("//Users//wangminghao//Desktop//demo.mp4"));
- 刷新流:
void flush()
–> 将缓冲区刷新到输入、输出流
# 字符流
# 字符流概述
- 字符流 = 字节流 + 编码表
- 出现的原因:
- 字节读取文本数据文件,汉字在不同编码下占用的字节数不同
- 中文第一个数字是负数
- GBK:2 字节
- UTF-8:3 字节
# 字符串编码解码问题
# 编码
byte[] getBytes()
:默认编码
byte[] getBytes(String charsetName)
:指定编码
# 解码
String(byte[] bytes)
:默认编码
String(byte[] bytes, String charsetName)
:指定解码
# 字符流读写数据
# 字符流写数据
- 写一个字符:
void write(int c)
- 写一个字符数组:
void write(char[] cbuf)
- 写部分字符数组:
void write(char[] cbuf, int off, int len)
- 写一个字符串:
void write(String s)
- 写部分字符串:
void write(String s, int off, int len)
- 刷新流:
void flush()
–> 除了字节流,其内部有缓冲区,需要刷新
# 字符流读数据
- 读一个字符:
int read
- 第一个字符数组:
int read(char[] cbuf)
# 字符流子类
- FileReader:
FileReader(String filename)
- FileWriter:
FileWriter(String fileName)
- 用途:
- 用于替代 OutputStreamReader/InputStreamWriter
- 只能用默认字符集
# 字符缓冲流
- BufferedReader
- 构造方法:
BufferedReader(Reader in)
- 写一个换行:
void newLine()
- BufferedWriter
- 构造方法:
BufferedReader(writer out)
- 读一行字符串:
public String readLine()
- 不包括终止字符
- 流的结尾返回 null
| String line; |
| while ((line = br.readLine()) != null) { |
| System.out.println(line); |
| } |
# 异常处理
| try (FileInputStream fis = new FileInputStream("D://a.txt"); FileOutputStream fos = new FileOutputStream("D://a.txt")) { |
| int r = fis.read(); |
| fos.write(96); |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } |
# 特殊操作流
# 标准输入输出流
- 标准输入流:
public static final InputStream in
- 构造方法:
InputStream is = System.in
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
- 包装类 Scanner:
Scanner sc = new Scanner(System.in);
- 标准输出流:
public static final OutputStream out
- Ststem.out 的本质就是一个字节输出流
System.out.println()
System.out.print();
System.out.printf();
# 打印流
# 分类
- 字节打印流:
PrintStream(String fileName[, boolean autoFlush])
- 字符打印流:
PrintWriter(String fileName[, boolean autoFlush])
- autoFlush:每次 print 后自动刷新流,默认为 false
# 特有方法
print
println
# 特点
- 只负责输出数据,不负责读取
- 特有方法输出不转码,所见即所得
# 对象序列化流
# 概述
- 对象序列化:保存对象文件
- 对象反序列化:读取对象文件
# 对象序列化流: ObjectOutputStream
- 构造:
ObjectOutputStream(OutputStream out)
- 写入对象:
void writeObject(Object obj)
- 对对象实现
Serializable
标记接口
- 构造:
ObjectOutputStream(InputStream in)
- 读取对象:
Object readObject()
# serialVersionUID
- 用于验证序列化和反序列化时,是否使用了同一个类
- 可以子类重写:
private static final long serialVersionUID = 42L;
# transient 关键字
使成员变量不参与序列化
# Properties
- 作为 Map 集合的使用
- 作为 Map 集合的特有方法
Object setProperty(String key, String value)
:put 集合的值
String getProperty(String key)
:查键值(不存在返回 null)
Set<String> stringPropertyNames()
:返回键集
- Properties 与 I/O 流结合
- 字节流读取:
void load(InputStream inStream)
- 字符流读取:
void load(Reader reader)
- 字节流写入:
void store(OutputStream out, String comments)
- 字符流写入:
void store(Writer writer, String comments)
- comments:描述信息,不描述写 null
| Properties prop = new Properties(); |
| prop.put("baozi","baobao"); |
| for (Object key : prop.keySet) { |
| System.out.println(key + "," + prop.get(key)); |
| } |