码迷,mamicode.com
首页 > 编程语言 > 详细

Java当中的I/O的字符流

时间:2014-11-08 00:50:16      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:android   blog   http   io   ar   os   java   sp   for   

字符流读写文件时,以字符为基础

I/O当中字符流的核心类

bubuko.com,布布扣

Reader类和Writer类是所有字符流类的父类,同样也是抽象类。FileReader和FileWriter分别是它们的子类。

核心类的核心方法:

Reader:

int read(char [] c, int off, int len);

Writer:

void write(char [] c, int off, int len);
import java.io.*;
public class Test{
	public static void main(String args[]){
		FileReader fr = null;
		FileWriter fw = null;
		try{
			fr = new FileReader("F:/Android/Java4Android/33/src/a.txt");
			fw = new FileWriter("F:/Android/Java4Android/33/src/b.txt");
			char [] c = new char [100];
			int cLen = fr.read(c,0,c.length);
			fw.write(c,0,cLen);
		}
		catch(Exception e){
			System.out.println(e);
		}
		finally{
			try{
				fr.close();
				fw.close();
			}
			catch(Exception e){
				System.out.println(e);
			}
		}
	}
}

bubuko.com,布布扣

for(int i = 0;i <c.length;i++){
	System.out.println(c[i]);
}

bubuko.com,布布扣

 

Java当中的I/O的字符流

标签:android   blog   http   io   ar   os   java   sp   for   

原文地址:http://www.cnblogs.com/chavez-wang/p/4082550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!