IO流-字符流的学习

字符流的学习

跟字节流差不多
代码几乎一模一样的

package cn.hjm.test;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
  import java.io.IOException;
import java.io.Reader;
  /**
  * 使用字符流进行操作 文件的读取
 * @author hjm
 *
*/
public class Demo03 {
public static void main(String[] args) {
    //创建file对象
    File file = new File("C:\\Users\\hjm\\Desktop\\有趣的句子.txt");
    
    Reader reader =null;
    try {
        //创建流
        reader =new FileReader(file);
        //创建数组大小
        char[] b = new char[1024];
        //规定字节大小
        int len=0;
        try {
            while(-1!=(len=reader.read(b))){ //当读不到数据的时候为-1
                String str = new String(b,0,len); //构建字符串
                System.out.print(str);
            }
        } catch (IOException e) {
            
            e.printStackTrace();
        }
    } catch (FileNotFoundException e) {
        System.out.println("文件查找失败");
        e.printStackTrace();
    }finally{
        while(null!=reader){ //该流存在的时候,关闭它
            try {
                reader.close();
            } catch (IOException e) {
                
                e.printStackTrace();
                System.out.println("关闭输入流");
            }
        }
    }
}
}

package cn.hjm.test;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;
/**
 * 对文件的写入 
 * @author hjm
 *
 */
public class Demo04 {

public static void main(String[] args) throws FileNotFoundException {
    File file = new File("C:\\Users\\hjm\\Desktop\\有趣的句子.txt");
    Writer writer = null;
    
    try {
        writer = new FileWriter(file,true);
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
    String str ="是这样的吗?\r\n";
    
    try {
        //直接写入,不需要转字节流
        writer.write(str);
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    try {
        writer.flush();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }finally{
        while(null!=writer){ //该流存在的时候,关闭它
            try {
                writer.close();
            } catch (IOException e) {
                
                e.printStackTrace();
                System.out.println("关闭输入流");
            }
        }
    }
    

}

}

----文件的拷贝

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值