问题讨论:程序 C/C++ Java GUI编程 ASP Php Shell Perl Web开发 软件工程 三大件 机箱 存储设备 光存储 音频设备 视频设备 外设 购机
asp php java C CGI .net vb delphi unix|linux sql Word Excel WPS OutLook Powerpoint Dreamweaver FPage/Golive CSS/HTML DOM/JS
热门词:流程图 excel 入侵检测 vss Windows 安全漏洞 QQ空间 事件编程 MFC

 编程开发 > java编程 

Java创建文件夹与创建文件 (转)

[2006-11-3 18:50:16] [来源: 百家电脑学院] [我要投稿]

CODE:
// time:           05-12-22
// author:         [email]huapingsmith@hotmail.com[/email]
// description:     程序先检查文件夹是否存在,如果不存在,则创建一个,存在,则继续运行.
//               文件夹处理完成后,下一步工作为往文件夹中创建文件.
// caution:       当前文件夹中如果已经有名为abc.txt的文件时,
//               在当前文件夹创建一个名为abc.txt的文件会失败.
//               在这个程序中,如果E:\\test 下已经有名为1,2,3,4的文件时,程序执行会失败.


import java.io.*;

public class Demo
{
  public static void main( String[] args)
  {
    File   dirFile;
    File   tempFile;
    boolean bFile;
    String   sFileName;
   
    bFile = false;

    try
    {
        dirFile = new File("E:\\test");
        bFile   = dirFile.exists();

        if( bFile == true )
        {
          System.out.println("The folder exists.");
        }
        else
        {
          System.out.println("The folder do not exist,now trying to create a one...");
          bFile = dirFile.mkdir();
          if( bFile == true )
          {
            System.out.println("Create successfully!");
          }
          else
          {
            System.out.println("Disable to make the folder,please check the disk is full or not.");
            System.exit(1);
          }
        }
     
        System.out.println("Now we put files in to the folder...");

        for(int i=0; i<5; i++)
        {
          sFileName = new String("E:\\test\\");
          sFileName += String.valueOf(i);
          tempFile = new File(sFileName);
          bFile = tempFile.createNewFile();
        }
      }catch(IOException e)
      {
        // Exception hadler
      }
     
      if( bFile == true )
        System.out.println("Successfully put files in to the folder!");
      else
        System.out.println("Sorry sir,i don't finish the job!");
  }
}

[Copy to clipboard]

该篇文章来源:百家学院 (http://www.9php.com),转载请注明.

·看过 Java创建文件夹与创建文件 (转) 文章的还看过:

·百家学院 | 最新评论·

评论内容:不能少于5个字,请自觉遵守互联网相关政策法规。

用户名: 验证码: 验证码,看不清楚?请点击刷新验证码