码迷,mamicode.com
首页 > 编程语言 > 详细

Java创建文件new file(string 参数)与file.createNewFile()

时间:2017-05-20 23:40:52      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:test   image   int   print   img   nbsp   class   alt   存在   

File file = new File("E:\\test\\1.txt");//创建一个文件对象

    此时在E盘的test目录下为空,并未创建1.txt文件,如图:

技术分享

File file = new File("E:\\test\\1.txt");
				
boolean res = file.createNewFile();
	/*
	 * createNewFile() 方法,根据抽象路径创建一个新的空文件,当抽象路径下的文件存在时,创建失败
	 * 如果E:/test 目录下没有 1.txt文件,则创建该文件;如果1.txt已经存在,那么文件创建失败
	 * 如果没有test目录,则直接抛出异常;
	*/
		
		if(!res)
			System.out.println("创建失败!");
		else
			System.out.println("创建成功!");
		

  此时,在E盘test目录下,生成文件1.test。如图所示:

技术分享

Java创建文件new file(string 参数)与file.createNewFile()

标签:test   image   int   print   img   nbsp   class   alt   存在   

原文地址:http://www.cnblogs.com/xiao-lan-mao/p/6883432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!