Java中IO的学习

一、在java中把输入输出看做一种流,就像是水管中的水。数据就是水管中的水。

二、java中的输入输出流按照流中数据单元的大小分为字节流,字符流.字节流就是以字节为单位,就是1byte为基本单位,而字符流是以2字节为基本单位的。

三、水流是有方向的,java中的输入输出流也是有方向的。方向是以程序所在的内存为基点计算的。如在我们程序在内存中,对于程序来说,数据是从键盘,网络,摄像头到内存中,所以是输入流,同样的数据从内存中写入到硬盘或者是网络上,这就是输出流

四、在java中所有输入流的基类是 InputStream/Reader  , 所有的输出流的基类是OutputStream/Writer 他们都是抽象类。

五、
用字节流从文件中读取数据并且输出来
/* FileInputStream fis = new FileInputStream("aaa.txt");
byte[] bytes = new byte[250];

int hasRead = 0;
while ((hasRead=fis.read(bytes))>0){
String str = new String(bytes);
System.out.println(str);

}*/
用字符流从文件中读取数据并且输出来
/* FileInputStream fis = new FileInputStream("aaa.txt");
byte[] bytes = new byte[250];

int hasRead = 0;
while ((hasRead=fis.read(bytes))>0){
String str = new String(bytes);
System.out.println(str);

}*/






File file = new File("aaa.txt");
System.out.println(file.exists());
FileReader fr = new FileReader(file);

int hasRead = 0;
char[] chars = new char[1];
while((hasRead=fr.read(chars))>0){
String str = new String(chars);
System.out.println(str+"-");
}

复制文件
FileWriter fw = null;
FileReader fr = null;
try{

File file = new File("aaa.txt");
if(file.exists()){
fr = new FileReader(file);
fw = new FileWriter("copy.txt");
char[] chars = new char[1];
int hasRead = 0;

while ((hasRead=fr.read(chars))>0){

System.out.println(chars);
fw.write(chars);
fw.flush();

}


需要注意的一点是:每次使用完输入输出流之后都要关闭输入输出流。特别是使用字符输出流时候,如果不关闭输出流则数据不会自动输出。必须使用flush,将缓冲中的数据flush一下。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值