一:文件读写操作

一:文件读写操作
1.JAVA io :输入输出操作:一组有序的,起点,终点字节的集合;对数据传输总称
2.读取磁盘数据,网络数据,输入输出
3.缓冲区技术
4.字节,字符,
5.inputstrean:抽象类
6.outputstream,out
7.system.in
8.systetm.out
二。文件自身
1.文件操作类
2.fileinputsream fin=new fileinutstream(“f:a.text”)
3.read():每次读一个字节:返回值-1文件末尾
4.while((ch=fin。read())!=-1)
(char)ch
byte buff []=new byte [1024];
while(fin.read(buff)!=-1)
new String (buff):字符串
文件读取完毕流:close
public static void main (String【】args)throws Exception{
fileoutputstream fos=new fileoutputstream(“f://a.txt”);
String str =“hello JAVA !”
fos.write (str getBytes());
fos.close();
system.out.println(“end…”);
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值