import java.io.*;
public class CopyDemo {
public static void main(String[] args) {
BufferedReader br = null;
BufferedWriter bw = null;
try
{
br = new BufferedReader(new FileReader("C:\\Users\\LYH\\Desktop\\java1.txt"));
bw = new BufferedWriter(new FileWriter("C:\\Users\\LYH\\Desktop\\java4.txt"));
//用的是readLine方法
// String line = null;
// while((line=br.readLine())!=null)
// {
// bw.write(line);
// bw.newLine();
// }
/**用read(char[])
* 用char[]
*
* */
int len = 0;
char[] ch = new char[1024];
while((len=br.read(ch))!=-1)
{
bw.write(ch,0,len);
}
}catch(IOException e){
e.printStackTrace();
}
finally
{
try
{
if(br!=null)
br.close();
}
catch(IOException e)
{
throw new RuntimeException("关闭读取流失败!");
}
try
{
if(bw!=null)
bw.close();
}
catch(IOException e)
{
throw new RuntimeException("关闭写入流失败!");
}
}
}
}
如题 BufferedReader本来就是缓冲流 为什么读到的字符还要存到String里面或者char[]里面呢
有谁能说下这个缓冲流和char[]或者String都干了什么 这里面的原理是什么呢 能从底层说下么
拜托了 大神们
|
|