public static void main(String[] args) throws IOException {
//使用ByteArrayOutputStream
FileInputStream fis = new FileInputStream("aa.txt");
ByteArrayOutputStream baos = new ByteArrayOutputStream(); //在内存中创建了可以增长的内存数组
int b;
while((b = fis.read()) != -1){
baos.write(b); //将读取到的数据逐个写到内存中
}
System.out.println(baos); //默认调用toSting()方法,使用平台默认码表,将缓冲区的内容转换为了字符串
fis.close();
baos.close();
}
|
|