标签: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