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

java 字符流writer、reader基本操作及理解

时间:2014-05-03 23:57:18      阅读:472      评论:0      收藏:0      [点我收藏+]

标签:java   字符流   writer   reader   基本操作   

字符和字节有什么区别,额……这个我也不知道。

1、基本操作实例

import java.io.*;

public class CharDemo
{
	public static void main(String[] args)
	{
		File f=new File("F:\\workspace\\Javaprj\\test.txt");
		
		Writer out=null;
		Reader in=null;
		try
		{
			out=new FileWriter(f);
			String str="Hello World!!!";
			out.write(str);
			System.out.println("The string "+"\"Hello World!!!\""+" has been written into "+f.getName()+".");
			out.close();
			
			in=new FileReader(f);
			char[] buf=new char[1024];
			int num=in.read(buf);
			if(num!=-1)
			{
				System.out.println("The string \""+ new String(buf,0,num) +"\" has been read from the file "+f.getName()+".");
			}
			else
			{
				System.out.println("The file \""+f.getName()+"\" is empty!");
			}
		}
		catch(IOException e)
		{
			e.printStackTrace();
		}
	}
}
bubuko.com,布布扣

2、注意的问题

将out.close();注释掉

import java.io.*;

public class CharDemo
{
	public static void main(String[] args)
	{
		File f=new File("F:\\workspace\\Javaprj\\test.txt");
		
		Writer out=null;
		Reader in=null;
		try
		{
			out=new FileWriter(f);
			String str="Hello World!!!";
			out.write(str);
			System.out.println("The string "+"\"Hello World!!!\""+" has been written into "+f.getName()+".");
			//out.close();
			
			in=new FileReader(f);
			char[] buf=new char[1024];
			int num=in.read(buf);
			if(num!=-1)
			{
				System.out.println("The string \""+ new String(buf,0,num) +"\" has been read from the file "+f.getName()+".");
			}
			else
			{
				System.out.println("The file \""+f.getName()+"\" is empty!");
			}
		}
		catch(IOException e)
		{
			e.printStackTrace();
		}
	}
}
bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣


java 字符流writer、reader基本操作及理解,布布扣,bubuko.com

java 字符流writer、reader基本操作及理解

标签:java   字符流   writer   reader   基本操作   

原文地址:http://blog.csdn.net/cjc211322/article/details/24886339

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