主页 > 数据处理 > 简要描述使用输入流fileinputstream进行数据输入的步骤

简要描述使用输入流fileinputstream进行数据输入的步骤

2023-11-12 01:55来源:m.sf1369.com作者:宇宇

首先,数据输入使用的是outputstream流,inputstream是读取数据

步骤:

1. 实例化FileOutputStream对象

2. 往流中写入数据

3. 清空流的缓存

关闭流

public class FileWrite {

 public static void main(String[] args) {

  FileOutputStream fos = null;

  try {

   fos = new FileOutputStream(d:\\file_test.txt);

   String content = 我的内容;

   fos.write(content.getBytes());

   fos.flush();

  } catch (Exception e) {

   e.printStackTrace();

  } finally {

   if(fos!=null){

    try {

     fos.close();

    } catch (IOException e) {

     e.printStackTrace();

    }

   }

  }

 }

}

相关推荐

车联网企业国内有哪些?

数据处理 2023-12-23

注册计量师-请教贴

数据处理 2023-12-19

逆光照片怎么处理

数据处理 2023-12-08