在java中,createnewfile方法是做什么的?什么时候用,谢谢大神

 我来答
百度网友28a379c
推荐于2016-11-29 · TA获得超过296个赞
知道大有可为答主
回答量:792
采纳率:100%
帮助的人:1184万
展开全部
方法自动创建此抽象路径名的新文件。文件锁设备应该使用这种方法,文件锁定会导致协议无法进行可靠地工作。1.声明以下是createNewFile()方法的声明:public boolean createNewFile()2.参数NA3.返回值此方法返回true,如果指定的文件不存在,并已成功创建。如果该文件存在,该方法返回false。4.异常IOException -- 如果发生I/ O错误SecurityException --如果SecurityManager.checkWrite(java.lang.String) 方法拒绝写入权限的文件5.例子下面的示例演示createNewFile()方法的用法。package com.yiibai;import java.io.File;public class FileDemo {public static void main(String[] args) {File f = null;boolean bool = false;try{// create new filef = new File("test.txt");// tries to create new file in the systembool = f.createNewFile();// printsSystem.out.println("File created: "+bool);// deletes file from the systemf.delete();// delete() is invokedSystem.out.println("delete() method is invoked");// tries to create new file in the systembool = f.createNewFile();// printSystem.out.println("File created: "+bool);}catch(Exception e){e.printStackTrace();}}}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友e61ab528ae
2015-10-09
知道答主
回答量:8
采纳率:0%
帮助的人:5.1万
展开全部
项目中你要创建文件的时候用到
追问
创建到哪里啊?我想把它创建到指定位置应该怎么做?
追答
File file = new File("d:/t.txt");
if (file.createNewFile()) {
    System.out.println("创建单个文件成功!");
    return true;
} else {
    System.out.println("创建单个文件失败!");
    return false;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式