 import java.io.*;
    public class Test10_1
    {
        public static void main(String args[])
          {
            File fl=new File("c:\\test\\IOTest. java");     //ļ
            System.out.println(fl);                    //ʾļ
            try
               {
                    fl. createNewFile();              //ļ
               }catch(IOException e){}
           }
    }
