当前位置: 技术问答>java相关
一道scjp的题目
来源: 互联网 发布时间:2015-10-06
本文导语: 下面一段程序哪里有问题? try{ File f=new File("file.txt"); OutputStream out=new FileOutputStream(f,true); } catch(IOException e){} | FileOutputStream(f,true);这是错的,FileOutputStream没有这样的Constructor,见API
下面一段程序哪里有问题?
try{
File f=new File("file.txt");
OutputStream out=new FileOutputStream(f,true);
}
catch(IOException e){}
try{
File f=new File("file.txt");
OutputStream out=new FileOutputStream(f,true);
}
catch(IOException e){}
|
FileOutputStream(f,true);这是错的,FileOutputStream没有这样的Constructor,见API