我写的Java文件读写类

  1.     /**=======================================================================**
  2.      *      [## public static void createCheckFile(String filePath, String detail) throws {} ] :
  3.      *          参数   :filepath文件路径名称
  4.      *              detail等待写入文件的内容
  5.      *          返回值 :无
  6.      *          修饰符 :public static 可以不实例化对象而直接调用方法
  7.      *          功能   :将detail写入指定的路径文件中
  8.      **=======================================================================**/
  9.     public static void createCheckFile(String filePath, String detail) throws
  10.             Exception {
  11.         try {
  12.             File file = new File(filePath);
  13.             FileWriter filewriter = new FileWriter(file, false); //false表示不追加内容
  14.             filewriter.write(detail);
  15.             filewriter.close();
  16.         } catch (IOException e) {
  17.             throw e;
  18.         } catch (Exception ex) {
  19.             throw ex;
  20.         }
  21.     }
  22.     /**=======================================================================**
  23.      *      [## public static String readCheckFile(String filePath) throws {} ] :
  24.      *          参数   :filepath文件路径名称
  25.      *          返回值 :无
  26.      *          修饰符 :public static 可以不实例化对象而直接调用方法
  27.      *          功能   :返回指定的路径文件中的内容
  28.      **=======================================================================**/
  29.     public static String readCheckFile(String filePath) throws Exception {
  30.         BufferedReader bufread;
  31.         String read, readStr;
  32.         readStr = "";
  33.         try {
  34.             File file = new File(filePath);
  35.             FileReader fileread = new FileReader(file);
  36.             bufread = new BufferedReader(fileread);
  37.             while ((read = bufread.readLine()) != null) {
  38.                 readStr = readStr + read;
  39.             }
  40.         } catch (Exception d) {
  41.             System.out.println(d.getMessage());
  42.         }
  43.         return readStr; //返回从文本文件中读取内容
  44.     }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值