码迷,mamicode.com
首页 > 其他好文 > 详细

IO--int read(char cbuf[],int off,int len)

时间:2018-04-22 12:58:27      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:array   exception   writer   单位   buffer   int   strong   oid   throw   

1.InputStreamReader  

Reader与Writer是基于字符的IO操作接口,而InputStreamReader的read方法就是以字符为单位的读方法

/**
     * Reads characters into a portion of an array.
     *
     * @param      cbuf     Destination buffer
     * @param      offset   Offset at which to start storing characters
     * @param      length   Maximum number of characters to read
     *
     * @return     The number of characters read, or -1 if the end of the
     *             stream has been reached
     *
     * @exception  IOException  If an I/O error occurs
     */
    public int read(char cbuf[], int offset, int length) throws IOException {
        return sd.read(cbuf, offset, length);
    }

 三个参数:cbuf[]是char数组用于储存读到的字符,offset是指从cbuf[]第几位开始储存而不是指从读文件第几个字符开始读,length指每次读多少位

使用例程

package IO;

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

public class testReader {
    public static void main(String argv[]){new testReader().testRead();}

    public void testRead(){
        try{
            StringBuffer sb=new StringBuffer();
            char[] cBuf=new char[1024];
            File file=new File("D:\\javaCode\\testSE\\src\\IO\\file.txt");
            if(!file.exists()){
                System.out.println("not exists");
                return;
            }
            FileReader f=new FileReader(file);
            while(f.read(cBuf,10,2)>0){
                sb.append(cBuf);
                System.out.println(sb);
            }
        }catch (IOException e){
            e.printStackTrace();
        }
    }
}

 

IO--int read(char cbuf[],int off,int len)

标签:array   exception   writer   单位   buffer   int   strong   oid   throw   

原文地址:https://www.cnblogs.com/ming-szu/p/8905737.html

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