62,620
社区成员
发帖
与我相关
我的任务
分享File f = new File("D:\\a.txt")
// 向"D:\\a.txt"文件中打印内容"hello"
PrintStream ps = new PrintStream(new FileOutputStream(f));
ps.print("hello"); File f = new File("D:\\a.txt")
// 向"D:\\a.txt"文件中打印内容"hello"
PrintStream ps = new PrintStream(f);
ps.print("hello");