Writer
/** *<li> Writer中定义的一个重要的方法: * public void writer(String str)throws IOException; */ package com.java.demo; import java.io.File; import java.io.FileWriter; import java.io.Writer; public class TestDemo { public static void main(String args[]) throws Exception{ //设置文件路径 File fl = new File("e:"+File.separator+"hello" + File.separator+"demo" +File.separator+"java.txt" ); if(!fl.getParentFile().exists()){ //父目录不存在 fl.getParentFile().mkdirs();//创建父目录,但是不创建文件 } String str = "努力不一定成功,但是不努力有可能成功!"; //创建文件; Writer wt = new FileWriter(fl); wt.write(str); //接收字符串写入java.txt文件中 wt.close();//关闭IO流 } }
Reader
/** *<li> Reader中定义的方法: * 读取全部内容到字节数组中:public int read(char[] ch)throws IOException ; */ package com.java.demo; import java.io.*; public class TestDemo { public static void main(String args[]) throws Exception{ //设置文件路径 File fl = new File("e:"+File.separator+"hello" + File.separator+"demo" +File.separator+"java.txt" ); if(fl.exists()){ //如果文件存在 Reader rd = new FileReader(fl); char ch[] =new char[1024]; rd.read(ch) ; ch.clone(); System.out.println(ch); } } }
时间: 2024-10-17 03:19:39