程序是练出来的

专注JAVA,JavaScript,Python,三剑走天涯。 软素质:忠心、追求、进取、态度、方法、恒心、坚持

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
import java.io.*;

public class CheckFile {

  private File f ;
  private BufferedReader bdr;
  private char[] c =new char[1024];
  private PrintWriter pw ;


  CheckFile() {

    try {

      f=new File("D:\\myRead","myText.txt");

    }catch (Exception e) {

      e.getMessage();
    }


    if(f.exists()) {

       System.out.print("文件存在"+"\n");

       try {

           bdr=new BufferedReader(new FileReader(f));


           while ((bdr.read(c,0,c.length))!=-1) {

            pw=new PrintWriter(System.out);

               pw.print(c);

               pw.flush();
           }

           pw.close();


       }catch (IOException e) {

           System.out.println(e.getMessage());
       }



    }else  {

      System.out.println("文件夹没有文件,呵呵。");
    }

  }


   public static void main (String [] args) {

     new CheckFile();

   }
}

 

posted on 2017-12-30 17:36  爱学习的小象  阅读(171)  评论(0编辑  收藏  举报