免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3753 | 回复: 0
打印 上一主题 下一主题

Java创建文件夹与创建文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-10-20 00:39 |只看该作者 |倒序浏览

// author:         huapingsmith@hotmail.com
// 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

转自:http://www.9php.com/college/software/java/2006/11/850166049509.html


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/38279/showart_404053.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP