• Java 文件读写示例1


    //StringBuffer常用于字符串追加,插入,删除

    import java.io.*;

    public class IOFile {
     static File f=new File("test.txt");
     static int count=0;
     public static void main(String[] args)
     {
      if(!f.exists())
      {
       try
       {
       f.createNewFile();
       }catch(IOException e1)
       {
        System.out.println(e1);
       }catch(Exception e2){
        System.out.println(e2);
       }
      }
       for(int i=0;i<5;i++)
       {
      try
      {
      FileWriter fos=new FileWriter(f,true);
      fos.write(String.valueOf(i));
      fos.write(' ');
      fos.flush();
      fos.close();
      }catch(FileNotFoundException e)
      {
       System.out.println(e);
      }catch(IOException e1)
      {
       System.out.println(e1);
      }
       }
      try
      {
       BufferedReader br=new BufferedReader(new FileReader("test.txt"));
       String str=null;
       for(str=br.readLine();str!=null;str=br.readLine())
        System.out.println(str);
       br.close();
       
      }catch(FileNotFoundException e1)
      {
       System.out.println(e1);
      }catch(IOException e2)
      {
       System.out.println(e2);
      }
      
     }

    }

  • 相关阅读:
    Python_异常处理
    Python_文件相关操作
    Python_集合
    Python_字典
    Python_元组
    Python_列表操作2
    Python_列表操作1
    Spring-Data-Jpa使用总结
    SpringBoot源码分析之---SpringBoot项目启动类SpringApplication浅析
    RESTful API批量操作的实现
  • 原文地址:https://www.cnblogs.com/HackHer/p/5005216.html
Copyright © 2020-2023  润新知