IO之文件输出流

package com.qiang.IO;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileOutputStreamTest {
    public static void main(String[] args) {
        output();
    }

    public static  void  output(){
        FileOutputStream fileOutputStream = null;

        try {
            //定义文件输出流对象
            //参数1,指定数据需要输出的位置, 我们需要指定到磁盘中某个文件的绝对位置
            //参数2 ,决定是否向文件中追加内容
            fileOutputStream = new FileOutputStream("D:/Ideal wrok space/bb.txt");
            String  str ="今天南京的天气好热!"; //具体需要输出的数据
            byte b[] = str.getBytes();      //键数据转换成字节数组
            // 将数据输出到指定位置
            //参数1 具体输出的字节数组数据
            //参数2 ,为偏移量决定数组的那个元素开始输出
            //参数3 偏移量决定输出到字节数组那个元素为止
            fileOutputStream.write(b,0, b.length);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            try {
                fileOutputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }


    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值