博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
35.使用FileOutputStream类向文本文件写数据
阅读量:5091 次
发布时间:2019-06-13

本文共 821 字,大约阅读时间需要 2 分钟。

import java.io.*;public class FileOutputStreamTest {    public static void main(String[] args){        FileOutputStream fos=null;        try {            fos=new FileOutputStream("d:\\myDoc\\hello.txt",true);            String str="好好学习Java";            byte[] words=str.getBytes();            fos.write(words,0,words.length);            System.out.println("hello文件已更新");        } catch (FileNotFoundException e) {            e.printStackTrace();        } catch (IOException e) {            System.out.println("文件更新时出错!");            e.printStackTrace();        }finally{            try {                if(fos!=null){                    fos.close();                }            } catch (IOException e) {                e.printStackTrace();            }        }    }}

 

转载于:https://www.cnblogs.com/xiaotaoxu/p/5536565.html

你可能感兴趣的文章
【BZOJ 5222】[Lydsy2017省队十连测]怪题
查看>>
Java跟Javac,package与import
查看>>
day-12 python实现简单线性回归和多元线性回归算法
查看>>
Json格式的字符串转换为正常显示的日期格式
查看>>
[转]使用 Razor 进行递归操作
查看>>
[转]Android xxx is not translated in yyy, zzz 的解决方法
查看>>
docker入门
查看>>
Android系统--输入系统(十一)Reader线程_简单处理
查看>>
监督学习模型分类 生成模型vs判别模型 概率模型vs非概率模型 参数模型vs非参数模型...
查看>>
Mobiscroll脚本破解,去除Trial和注册时间限制【转】
查看>>
实验五 Java网络编程及安全
查看>>
32位与64位 兼容编程
查看>>
iframe父子页面通信
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>