java 字节流和字符流

一、利用File类生成文件

例如:

import java.io.File;
import java.io.IOException;

public class test {
	public static void main(String args[]) throws IOException{
		File fl = new File("F:\\test\\file");//生成文件的父路径
		File file = new File(fl, "test.txt");//实例化File类,并变量引用;
		/*******************首先,对路径进行判断,如果存在,输出路径名;如果不存在,创建新的路径名******************************/
		if(fl.exists()){
			String str = fl.getName();
			System.out.println(str);
		}
		else{
			try{
				fl.mkdirs();//因为要创建多个文件夹,所以用mkdirs(),而不用mkdir();
				System.out.println("创建test和file文件夹成功");
			}catch(Exception e){
				e.printStackTrace();
			}
		}
		/****************然后,对文件进行判断,如果存在,输出文件名;如果不存在,创建文件*******************/
		if(file.exists()){
			String str = file.getName();
			System.out.println(str);
		}
		else{
			try{
				file.createNewFile();
				System.out.println("生成文件test.txt");
			}catch(Exception e){
				e.printStackTrace();
			}
		}
	}

}


IO的分类其实有很多种,如果是按是否堵塞,可以分为堵塞(BIO)和非堵塞(NIO);如果是按照读取来源,可以分文件IO和socket IO,而对于处理对象,可以氛围字节IO和字符IO。另外,有部分辅助的IO,主要是用于处理缓存(例如BufferedReader)或者字符串处理的(PrintWriter)。


二、字节流

在上面例子中添加FileOutputStream和FileInputStream内容,例如:

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class test {
	public static void main(String args[]) throws IOException{
		File fl = new File("F:\\test\\file");//生成文件的父路径
		File file = new File(fl, "test.txt");//实例化File类,并变量引用;
		/*******************首先,对路径进行判断,如果存在,输出路径名;如果不存在,创建新的路径名******************************/
		if(fl.exists()){
			String str = fl.getName();
			System.out.println(str);
		}
		else{
			try{
				fl.mkdirs();//因为要创建多个文件夹,所以用mkdirs(),而不用mkdir();
				System.out.println("创建test和file文件夹成功");
			}catch(Exception e){
				e.printStackTrace();
			}
		}
		/****************然后,对文件进行判断,如果存在,输出文件名;如果不存在,创建文件*******************/
		if(file.exists()){
			String str = file.getName();
			System.out.println(str);
		}
		else{
			try{
				file.createNewFile();
				System.out.println("生成文件test.txt");
			}catch(Exception e){
				e.printStackTrace();
			}
		}
		/*********利用FileOutputStream和FileInputStream分别往文件test.txt中写数据和读取数据****************/
		byte [] data = "hello world!".getBytes();//getBytes()将字符转为字节数组
		FileOutputStream out = new FileOutputStream(file, true);
		FileInputStream in = new FileInputStream(file);
		try{			
			out.write(data);//往文件test.txt中写数据data内容
			int content;
                         while((content = in.read()) != -1){// 逐个数据读取文件test.txt中的数据
                                System.out.print((char)content);
			}
			System.out.println("成功写入和读取数据");
			
		}catch(Exception e){
			e.printStackTrace();
		}
		finally{
			out.close();
			in.close();
		}
		
	}

}


三、字符流

例如:

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class test {
	public static void main(String args[]) throws IOException{
		File fl = new File("F:\\test\\file");//生成文件的父路径
		File file = new File(fl, "test.txt");//实例化File类,并变量引用;
		/*******************首先,对路径进行判断,如果存在,输出路径名;如果不存在,创建新的路径名******************************/
		if(fl.exists()){
			String str = fl.getName();
			System.out.println(str);
		}
		else{
			try{
				fl.mkdirs();//因为要创建多个文件夹,所以用mkdirs(),而不用mkdir();
				System.out.println("创建test和file文件夹成功");
			}catch(Exception e){
				e.printStackTrace();
			}
		}
		/****************然后,对文件进行判断,如果存在,输出文件名;如果不存在,创建文件*******************/
		if(file.exists()){
			String str = file.getName();
			System.out.println(str);
		}
		else{
			try{
				file.createNewFile();
				System.out.println("生成文件test.txt");
			}catch(Exception e){
				e.printStackTrace();
			}
		}
		/*********字节流操作:利用FileOutputStream和FileInputStream分别往文件test.txt中写数据和读取数据****************/
		byte [] data = "hello world".getBytes();//getBytes()将字符转为字节数组
		FileOutputStream out = new FileOutputStream(file, true);
		FileInputStream in = new FileInputStream(file);
		try{			
			out.write(data);//往文件test.txt中写数据data内容
			int content;
                        while((content = in.read()) != -1){// 逐个数据读取文件test.txt中的数据
                                 System.out.print((char)content);
                       }
                       System.out.println("成功写入和读取数据");
			
		}catch(Exception e){
			e.printStackTrace();
		}
		finally{
			out.close();
			in.close();
		}
		/*********字符流操作:利用FileWriter和FileReader分别往文件test.txt中写数据和读取数据****************/
		String data1 = " welcome to you ";
		FileWriter filewriter = new FileWriter(file, true);
		FileReader filereader = new FileReader(file);
		BufferedReader br = new BufferedReader(filereader);
		try{
			filewriter.write(data1);
			String line = br.readLine();
			while(line != null){
				System.out.print(line);
				line = br.readLine();
			}
		}catch(Exception e){
			e.printStackTrace();
		}
		finally{
			filewriter.close();
			filereader.close();
		}
	}

}



四、字节流和字符流比较

字节流 :InputStream OutputStream
字符流 :Reader Writer
这四个类都是抽象类 ,不能直接new对象。

具体实现 :
字节流: FileInputStream FileOutputStream
字符流:FileReader FileWriter 

字符流处理的单元为2个字节的Unicode字符,分别操作字符、字符数组或字符串,而字节流处理单元为1个字节,操作字节和字节数组。所以字符流是由Java虚拟机将字节转化为2个字节的Unicode字符为单位的字符而成的,所以它对多国语言支持性比较好!如果是音频文件、图片、歌曲,就用字节流好点,如果是关系到中文(文本)的,用字符流好点。
所有文件的储存是都是字节(byte)的储存,在磁盘上保留的并不是文件的字符而是先把字符编码成字节,再储存这些字节到磁盘。在读取文件(特别是文本文件)时,也是一个字节一个字节地读取以形成字节序列。
字节流可用于任何类型的对象,包括二进制对象,而字符流只能处理字符或者字符串; 字节流提供了处理任何类型的IO操作的功能,但它不能直接处理Unicode字符,而字符流就可以。

字节流转换成字符流可以用 InputSteamReader OutputStreamWriter转换成BufferdReader BufferedWriter;BufferdReader BufferedWriter具有缓冲区。

字节流与和字符流的使用非常相似,两者除了操作代码上的不同之外。实际上字节流在操作时本身不会用到缓冲区(内存),是文件本身直接操作的,而字符流在操作时使用了缓冲区,通过缓冲区再操作文件


详细过程参考博文:http://blog.csdn.net/cynhafa/article/details/6882061

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值