aijava

welcome to my online log ! open java new world! Taste java charm........
posts - 1, comments - 4, trackbacks - 0, articles - 42
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

java基础学习14(java.io.File)

Posted on 2006-11-12 23:17 阅读(183) 评论(0)  编辑  收藏 所属分类: java基础学习系列
import  java.io.File;

public class  MainClass  {
     public static  void  main ( String args []) {
   File f1 =  new  File ( "MainClass.java" ) ;
   System.out.println ( "File Name:"  + f1.getName ()) ;
   System.out.println ( "Path:"  + f1.getPath ()) ;
   System.out.println ( "Abs Path:"  + f1.getAbsolutePath ()) ;
   System.out.println ( "Parent:"  + f1.getParent ()) ;
   System.out.println ( f1.exists ()  "exists"  "does not exist" ) ;
   System.out.println ( f1.canWrite ()  "is writeable"  "is not writeable" ) ;
   System.out.println ( f1.canRead ()  "is readable"  "is not readable" ) ;
   System.out.println ( "is a directory"  + f1.isDirectory () ) ;
   System.out.println ( f1.isFile ()  "is normal file"  "might be a named pipe" ) ;
   System.out.println ( f1.isAbsolute ()  "is absolute"  "is not absolute" ) ;
   System.out.println ( "File last modified:"  + f1.lastModified ()) ;
   System.out.println ( "File size:"  + f1.length ()  " Bytes" ) ;
     }
}
http://freehost13.websamba.com