blog/java相关/java文件操作.md

47 lines
528 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: java文件操作
tags: java
categories: 毕业设计
date: 2022-12-07 12:36:32
---
# java文件操作
### 1. 文件字符流
reader
**writer**
+ *write()*
+ *append()*
+ *flush()*
+ *close()*
+ ### 文件字符输入流
FileReader
+ ### 文件字符输出流
FileWriter
### 2. 文件文件字节流
inputstream
outputstream
+ #### 文件字节输入流
FileInputStream
+ #### 文件字节输出流
FileOutputStream