我测试了一下,果然是1024字节!默认增加1024字节!
- import java.io.*;
- class FileWriteDemo
- {
- public static void main(String args[]) throws IOException
- {
- // char[] cha=new char[1]; //1字节的字符数组
- //char[] cha = new char[1024];//1024字节的字符数组
- char[] cha = new char[1025];//1024字节的字符数组
- for(int x=0;x<cha.length;x++) //向数组中写入字符
- {
- cha[x]='a';
- }
- String s=new String(cha); //将字符数组转成字符串
-
- //创建一个demo.txt关联的FileWriter流
- FileWriter fw=new FileWriter("demo.txt");
- fw.write(s); //向流中写入字符串s
- fw.flush();
- }
- }
复制代码 |