JAVA实例1
1 package Demo3; import java.io.File;
import java.io.FileReader;
import java.io.IOException; public class Demo2 { public static void main(String[] args)
{
FileReader fileReader = null;
try{
//找到目标文件
File file = new File("e:\\Java\\a.txt");
//建立程序与文件的数据通道
fileReader = new FileReader(file);
//读取文件
char[] buf = new char[2056];
int length = 0;
length = fileReader.read(buf);
System.out.println("读取到的内容:"+ new String(buf,0,length));
}catch(IOException e){
System.out.println("读取资源文件失败....");
}finally{
try{
//关闭资源
fileReader.close();
System.out.println("释放资源文件成功....");
}catch(IOException e){
System.out.println("释放资源文件失败....");
}
} } }