问答详情
源自:4-2 生成 RSS 根节点及 version 属性

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

if (!file.exists())

try {

file.createNewFile();

} catch (IOException e1) {

// TODO Auto-generated catch block

e1.printStackTrace();

}


提问者:love_yun 2016-01-06 10:37

个回答

  • Its_forever
    2016-01-06 13:13:08
    已采纳

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


  • happygl16
    2016-04-12 19:49:03

    流的那张说的很清楚