大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
我们先来看下具体代码:
为两当等地区用户提供了全套网页设计制作服务,及两当网站建设行业解决方案。主营业务为网站设计、网站建设、两当网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!import java.io.File; import java.io.IOException; public class CreatFile{ public static void main(String[] args) { File newDir=new File("D:/test"); //声明磁盘目录 File newFile = new File(newDir,"test.txt"); //声明目录文件 boolean newCreatDir=newDir.exists(); boolean newCreatFile=newFile.exists(); //创建目录及文件 if(newCreatDir==false){ try{ //异常监听 newDir.mkdirs(); //创建目录 System.out.println(newDir.getAbsolutePath()+"目录已创建"); newFile.createNewFile(); //创建文件 System.out.println(newFile.getAbsolutePath()+"文件已创建"); } catch(IOException e){ //捕捉异常 e.printStackTrace(); //在命令行打印异常信息在程序中出错的位置及原因 } } else{ System.out.println(newDir.getAbsolutePath()+"目录已存在"); } if(newCreatFile==true){ System.out.println(newFile.getAbsolutePath()+"文件已存在"); } } }