Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1574095
  • 博文数量: 113
  • 博客积分: 3526
  • 博客等级: 中校
  • 技术积分: 1815
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-08 09:46
个人简介

记录总结自己的工作

文章分类

全部博文(113)

文章存档

2015年(19)

2014年(10)

2013年(6)

2012年(16)

2011年(24)

2010年(21)

2009年(17)

分类: Java

2010-07-16 14:35:48

import java.io.*;

public class Filee {
public static void main(String[] args) throws IOException {
   File f = new File("C:\\Downloads\\plato_free070821.rar");

   if (f.exists()) {

/** ///1 可以   
*
* FileInputStream fis = null;

    fis = new FileInputStream(f);

    System.out.println("File has " + fis.available()
      + " bytes");
    System.out.println("File has " + (double)((double)fis.available()/1000/1000)
      + "M");
    System.out.println("File has " + (double)(fis.available()/1024/1024)
      + "M");*/

    /** ///2 可以
    * System.out.println("文件存在");
    * System.out.println("文件大小为:"+(double)(f.length()/1024/1024)+"M");
    */
   } else {
    f.createNewFile();
    System.out.println("文件不存在");
   }
}
}

转自http://lanxulin.javaeye.com/blog/627256

google_protectAndRun("render_ads.js::google_render_ad", google_handleError, google_render_ad);
阅读(1036) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~