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

BufferedInputStream 如何读取文件

时间:2014-08-25 19:06:44      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:os   使用   io   文件   ar   new   on   ad   c   

下面的例子演示如何使用BufferedInputStream类读取文本文件内容。

首先需要声明一个byte数组作为buffer,然后循环将文本内容循环读入到buffer中,并将buffer转换为字符串,打印到控制台。

/**
*
* @author outofmemory.cn
*/
public class Main {

/**
* 从文件中读取文本
*/
public void readFromFile(String filename) {

BufferedInputStream bufferedInput = null;
byte[] buffer = new byte[1024];

try {

//创建BufferedInputStream 对象
bufferedInput = new BufferedInputStream(new FileInputStream(filename));

int bytesRead = 0;

//从文件中按字节读取内容,到文件尾部时read方法将返回-1
while ((bytesRead = bufferedInput.read(buffer)) != -1) {

//将读取的字节转为字符串对象
String chunk = new String(buffer, 0, bytesRead);
System.out.print(chunk);
}

} catch (FileNotFoundException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
} finally {
//关闭 BufferedInputStream
try {
if (bufferedInput != null)
bufferedInput.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}

/**
* @param args 命令行参数
*/
public static void main(String[] args) {
new Main().readFromFile("myFile.txt");
}
}

BufferedInputStream 如何读取文件

标签:os   使用   io   文件   ar   new   on   ad   c   

原文地址:http://www.cnblogs.com/xiaohaizhuimeng/p/3935427.html

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