File 能新建、删除、重命名文件和目录,但 File 不能访问文件内容本身。如果需要访问文件内容本身,则需要使用输入/输出流。
File对象可以作为参数传递给流的构造函数
File类的常见构造方法
public File(String pathname)
以parent为父路径,child为子路径创建File对象。
public File(String parent,String child)
IO 流体系
文件字节输入流
pubiic static void main (String[] args){
try {
FileInputStream in = new FileInputStream ("...");//绝对路径
byte[] b = new byte [1024];
int len = 0;
while ( (len = in.read(b))!=-1) {
system.out.println (new String(b,0,len));//从零开始,输到长度结束
in.close();
}catch (Exception e){
e.printStackTrace();
}
}
文件字节输出流
public static void main (String[] args){
try {
FileOutputStream out = new FileOutputStream("...");
String str = "..." ;//文件内容
out.write(str.getBytes());
out.flush();
out.close();//使用完要关闭流
}catch (Exception e){
e.printStackTrace();
}
}
文件字符输入流
读取文件操作步骤:
1.建立一个流对象,将已存在的一个文件加载进流。
FileReader fr = new FileReader(“Test.txt”);
2.创建一个临时存放数据的数组。
char[] ch = new char[1024];
3.调用流对象的读取方法将流中的数据读入到数组中。
fr.read(ch);
文件字符输出流
写入文件步骤
1.创建流对象,建立数据存放文件
FileWriter fw = new FileWriter(“Test.txt”);
2.调用流对象的写入方法,将数据写入流
fw.write(“text”);
2.1 输出流关闭之前需要清空缓存
fw.flush();
3.关闭流资源,并将流中的数据清空到文件中
fw.close();