当以文件作为数据源或目标时,除了可以使用字符串作为文件以及位置的指定以外,我 们也可以使用 File 类指定。

package com.yqq.app9;

import java.io.*;

/**
* @Author yqq
* @Date 2021/11/15 21:29
* @Version 1.0
*/
public class FileInIODemo {
public static void main(String[] args) {
BufferedWriter bw = null;
BufferedReader br = null;
try {
br = new BufferedReader(new FileReader(new File("d:/aa.txt")));
bw = new BufferedWriter(new FileWriter(new File("d:/yqq3.txt")));
String temp = "";
int i = 1;
while ((temp= br.readLine())!=null){
bw.write(i+"."+temp);
bw.newLine();
}
bw.flush();
}catch (Exception e){
e.printStackTrace();
}finally {
try {
if(bw != null)
bw.close();
if(br != null)
br.close();
}catch (Exception e){
e.printStackTrace();
}
}
}
}

File类在IO中的使用_字符串