黑马程序员技术交流社区
标题: JAVA流与文件操作总结 [打印本页]
作者: 2666fff 时间: 2015-6-4 22:56
标题: JAVA流与文件操作总结
Java流与文件操作
一、 数据流的基本概念
1.数据流
在Java中把不同的数据源与程序之间的数据传输都抽象表述为“流”(stream),以实现相对统一和简单的输入/输出操作方式。传输中的数据就像流水一样,也称为数据流。
2 .I/O数据流的分类方式
数据流分为输入流和输出流两类。输入流只能读取不能写。而输出流只能写不能读。(这里站在程序的角度来确定出入方向,即将数据从程序外部传送到程序中谓之“输入”数据,将程序中的数据传送到外部谓之“输出”数据。
)
3.缓冲流(Buffered Stream)
对数据流的每次操作都是以字节为单位进行的,既可以向输出流写入一个字节,也可从输入流中读取一个字节。显然效率太低,通常使用缓冲流,即为一个流配置一个缓冲区,一个缓冲区就是专门传送数据的一块内存。
二、 字符流
1.字符输入流Reader
Reader类为所有面向字符的输入流的超类,声明为java.io中的抽象类。
public int read():读取一个字符,返回的是读到的那个字符。如果读到流的末尾,返回-1。
public int read(char[] cbuf):将读到的字符存入指定的数组中,返回的是实际读取的字符数。如果读到流的末尾,返回-1。
public abstract int read(char[] cbuf,int off,int len):将读到的字符存入数组的指定位置(off),每次最多读len个字符,返回实际读取的字符数。如果读到流的末尾,返回-1。
close():读取字符其实用的是window系统的功能,使用完毕后,进行资源的释放。
2.字符输出流writer
Weiter类为所有面向字符的输出流的超类,声明为java.io中的抽象类。
public void write(int c):将一个字符写入到流中。
public void write(char[]):将数组中的字符依次写出。
public abstract void write(char[] bcbuf,int off,int len):将数组中下标off开始的len个字符写出。
public void write(String):将一个字符串写入到流中。
public abstract void flush():刷新流,将流中的数据刷新到目的地中,流还存在。
public abstreact void close():关闭资源,关闭前会先调用flush,刷新流中的数据去目的地,然后流关闭。
3. FileWriter的使用
该类没有特有的方法。只有自己的构造数。
该类特点:
1.用于处理文本文件。
2.该类中有默认的编码表,
3.该类中有临时缓冲。
构造函数
publicFileWriter(Stringfilename);//调用系统资源,在指定位置,创建一个文件。注意:如果该文件已存在,将会被覆盖。
例子:import java.io.*;
- <p style="font-family: Arial; line-height: 26px;"><strong>public class Demo1 {</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> /**</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> * @param args</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> */</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> public static void main(String[] args)throws IOException {</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> // TODO Auto-generated method stub</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> //创建输出流对象</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> FileWriter fw=new FileWriter("demo.txt");</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> char ch='中';</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> char arr[]={'a','b','','c'};</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> string str="program";</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.write(ch);</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.write(arr);</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.write(arr,1,2);</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.write(str,3,3);</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.write("helo world");</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.flush();</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.write("java");</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fw.close();</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> }</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong>}</strong></p>
复制代码
4. FileReader的使用
用于读取文本文件的流对象。构造函数:在读取流对象初始化的时候,必须要指定一个被读取的文件。
public FileReader(String filename);//如果该文件不存在会发生FileNotFoundException
例子
- <p style="font-family: Arial; line-height: 26px;"><strong>public class Demo4{</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> public static void main(String[] args){</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> FileReader fr=null;</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> char[] arr=new char[1024];</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> try{</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fr=new FileReader("e:/a/demo.txt");//读取可能抛异常</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> int len=fr.read(arr);</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> while(len!=-1){</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> System.out.print(new String(arr,0,len));</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> len=fr.read(arr);//实际读到的字数</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> } </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> System.out.println(); </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> }catch(IOException e){</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> System.out.println(e.toString());</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> }finally{</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> if(fr!=null){</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> try{</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> fr.close();</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> }catch(IOException e){</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> System.out.println(e.toString());</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> }</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong>}</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> }</strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> </strong></p><p style="font-family: Arial; line-height: 26px;"><strong> }</strong></p>
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |