例:编写一个程序实现如下功能,文件fin.txt是无行结构(无换行符)的汉语文件,从fin中读取字符,写入文件fou.txt中,每40个字符一行(最后一行可能少于40个字)
public class Test {
public static void main(String[] args) throws Exception {
try(
Reader r=new FileReader("fin.txt");
Writer w=new FileWriter("fout.txt");
){
int count=0;
int kk=0;
while((kk=r.read())>-1){
//System.out.println((char)kk); //代码调试
count++;
w.write(kk);
if(count%40==0)
w.write("\n");
}
}
}
}