Java使用FileOutputStream写入文件

From: http://beginnersbook.com/2014/01/how-to-write-to-a-file-in-java-using-fileoutputstream/


/* 使用FileOutputStream写入文件,FileOutputStream的write() 方法只接受byte[] 类型
的参数,所以需要将string通过getBytes()方法转换为字节数组。
1、首先判断文件是否存在,不存在就新建一个
2、写入文件是以覆盖方式
3、文件不存在会自动创建,存在则会被重写
 */

import java.io.*;

public class Exercise {
  
  public static void main(String args[]) {
    FileOutputStream fos = null;
    File file;
    String mycontent = "This is my Data which needs to be written into the file.";
    try {
      // specify the file path
      file = new File("/home/zjz/Desktop/myFile.txt");
      fos = new FileOutputStream(file);
      /* This logic will check whether the file exists or not.
      if the file is not found at the specified location it would create
      a new file
       */
//      if (!file.exists()) {
//        file.createNewFile();
//      }
      /* String content cannot be directly written into a file.
      It needs to be converted into bytes
       */
      byte[] bytesArray = mycontent.getBytes();
      fos.write(bytesArray);
      fos.flush();
      System.out.println("File Written Successfully");
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      try {
        if (fos != null) {
          fos.close();
        }
      } catch (IOException ioe) {
        System.out.println("Error in closing the Stream");
      }
    }
  }

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值