方法自肢丛动创建此抽象路径名的新文件。文件锁设备应该使用这种方法,指伏文件锁定会导致协议无法历逗樱进行可靠地工作。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 file f = new File("test.txt"); // tries to create new file in the system bool = f.createNewFile(); // prints System.out.println("File created: "+bool); // deletes file from the system f.delete(); // delete() is invoked System.out.println("delete() method is invoked"); // tries to create new file in the system bool = f.createNewFile(); // print System.out.println("File created: "+bool); }catch(Exception e){ e.printStackTrace(); } }}
相关文章
-
《两个妙龄女教师》红尘往事忆如烟最新章节!
2023-03-02 23:35 阅读(8651) -
张铁林儿子现在多大?
2023-03-03 07:16 阅读(7079) -
朱桦的老公是谁
2023-03-03 09:11 阅读(6552)
1 白蚁防治费收费标准
4934 阅读
2 1区2区3区4区产品乱码怎么解决啊?
4145 阅读
3 《韩剧下女们》 大结局介绍有哪些?
3452 阅读
4 《特赦1959》王英光将军原型是谁?
3441 阅读
5 电脑电源输出都是多少伏的呀
2881 阅读