博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
输入输出流
阅读量:6403 次
发布时间:2019-06-23

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

package LIU;import java.io.*;public class TestFile3 {    public static void main(String[] args) {        //字节写入读出                        try{            //写入            FileOutputStream fos=new FileOutputStream("d:\\test1.txt",true);                        //String str2="追加写入";            String str="\n大家下午好 ";            fos.write(str.getBytes());//覆盖写入                        //追加写入            //FileOutputStream(name,true)                                    fos.close();            //读出            FileInputStream fis=new FileInputStream("d:\\test1.txt");            byte[]b=new byte[200];            int i=fis.read(b);            String str1=new String(b,0,i);            System.out.println("读取内容:"+str1);            fis.close();                    }catch(Exception e)        {            e.printStackTrace();        }
package LIU;import java.io.*;public class TsetFile4 {    public static void main(String[] args) {                try {            //读取            FileReader fr=new FileReader("d:\\test1.txt");            char[]c=new char[200];                        int i=fr.read(c);            String str=new String(c,0,i);            System.out.println("读取内容:"+str);            fr.close();            //写入            FileWriter fw=new FileWriter("d:\\test1.txt",true);            fw.write("\n新写入的内容");            fw.close();                                } catch (Exception e) {            e.printStackTrace();        }    }
 

 

 

 

转载于:https://www.cnblogs.com/1ming/p/5277972.html

你可能感兴趣的文章
文档碎片
查看>>
C语言杂谈——与字符串相关的库函数
查看>>
孩子初三上半学期期中考试情况
查看>>
Mono 3 的默认Gc是Sgen
查看>>
业务架构师的服务(靠什么赚钱),从事这一职业需要什么知识?
查看>>
《Springboot极简教程》 Springboot plus Kotlin :Hello,World
查看>>
bboss es对比直接使用es客户端的优势
查看>>
将单个文件上传到多机器工具
查看>>
第17章 KOTLIN语言生态《Kotin 编程思想·实战》
查看>>
LeetCode 191 Number of 1 Bits(1 比特的数字们)
查看>>
RabbitMQ系列(六)你不知道的RabbitMQ集群架构全解
查看>>
springboot统一表单数据校验
查看>>
使用bat将优盘中的dig加到系统环境变量
查看>>
Rust 语言学习笔记(四)—— I/O
查看>>
Java实现流控-Semaphore
查看>>
题解 CF948A 【Protect Sheep】
查看>>
打破软件自动化测试的格局
查看>>
Google 开源新型强化学习框架 Dopamine
查看>>
TreeSet集合的add()方法的源码解析
查看>>
从闭包函数的变量自增的角度 - 解析js垃圾回收机制
查看>>