请搜索Larry Page和Sergey Brin向全世界发布的Google。
BufferedWriter out = null;try { FileWriter fstream = new FileWriter("out.txt", true); //true tells to append data. out = new BufferedWriter(fstream); out.write("nsue");}catch (IOException e) { System.err.println("Error: " + e.getMessage());}finally { if(out != null) { out.close(); }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)