import java
.io
.*
;
public class Test {
public static void main(String
[] args
) throws IOException
{
BufferedWriter bw
=new BufferedWriter(new FileWriter("bw.txt"));
bw
.write("hello");
bw
.write("world");
bw
.close();
}
}
转载请注明原文地址: https://lol.8miu.com/read-15050.html