为了账号安全,请及时绑定邮箱和手机立即绑定

为什么这里的文件不需要调用createNewFile()来创建?

if (!file.exists())

try {

file.createNewFile();

} catch (IOException e1) {

// TODO Auto-generated catch block

e1.printStackTrace();

}


正在回答

2 回答

if (!file.exists())  //判断文件是否存在,!file.exists()条件是说文件不存在。
try {
file.createNewFile();    // 不存在就创建
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}


0 回复 有任何疑惑可以回复我~
#1

love_yun 提问者

非常感谢!
2016-04-14 回复 有任何疑惑可以回复我~

流的那张说的很清楚

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么这里的文件不需要调用createNewFile()来创建?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信