题目7单选题
请阅读下面的程序 public class Hello { public static void main(String[] args) throws IOException { FileOutputStream fos = new FileOutputStream("D:\\demo.txt"); fos.write("abc"); fos.close(); }} 下列针对以上程序运行结果的描述,正确的是( )A. 编译出错B. 在D盘创建文件demo.txt,但文件内容是空的C. 在D盘创建文件demo.txt,并写入数据abcD. 在D盘已有的文件demo.txt中追加写入abc