Java常用字节流和字符流实例汇总
io流(输入流、输出流)
字节流、字符流
1.字节流:
- inputstream、outputstream
- inputstream抽象了应用程序读取数据的方式;
- outputstream抽象了应用程序写出数据的方式;
2.eof=end 读到-1就读到结尾
3.输入流的基本方法:
- int b=in.read();读取一个字节无符号填充到int低八位;-1是eof;
- in.read(byte[] buf)
- in.read(byte[] buf,int start,int size)
4.输出流基本方法:
- out.write(int b) 写出一个byte到流,b的低8位;
- out.write(byte[] buf) 将buf字节数组都写入到流;
- out.write(byte[] buf,int start,int size)
5.fileinputstream--->具体实现了在文件上读取数据,下面请看最简单的文件读取:
package com.wxd.test2; import java.io.fileinputstream; import java.io.ioexception; public class ioutil { /** * 读取指定文件内容,按照16进制输出到控制台 * 并且每输出10个byte换行 * @param filename */ public static void printhex(string filename) throws ioexception { //把文件作为字节流进行读操作 fileinputstream in =new fileinputstream(filename); int b; int i=1; while ((b=in.read())!=-1){ if(b<=0xf){ //单位数前面补0 system.out.print(0); } system.out.print(integer.tohexstring(b)+" "); if(i++%10==0){ system.out.println(); } } in.close(); } }
6.fileoutputstream实现了向文件中写出byte数据的方法:
package com.wxd.test2; import java.io.fileoutputstream; import java.io.ioexception; public class fileoutdemo1 { public static void main(string[] args) throws ioexception{ //如果该文件不存在则直接创建,如果存在删除后创建 fileoutputstream out=new fileoutputstream("demo/out.dat"); out.write('a');//写出了‘a'字符的低八位 out.write('b');//写出了‘b'字符的低八位 int a=10;//write只能写低八位写一个int需要写四次每次8位 out.write(a>>>24); out.write(a>>>16); out.write(a>>>8); out.write(a); byte[] zg="中国".getbytes("utf-8"); out.write(zg); out.close(); ioutil.printhex("demo/out.dat"); } }
7.dataoutputstream/datainputstream对“流”功能的扩展,可以更加方便的读取int,long,字符等类型数据:
writeint()/writedouble()/writeutf()
package com.wxd.test2; import java.io.dataoutputstream; import java.io.fileoutputstream; import java.io.ioexception; public class dosdemo { public static void main(string[] args) throws ioexception { string file="demo/dos.dat"; dataoutputstream dos=new dataoutputstream(new fileoutputstream(file)); dos.writeint(10); dos.writeint(-10); dos.writelong(10l); dos.writedouble(10.5); //采用utf-8编码写出 dos.writeutf("中国"); //采用utf-16be编码写出 dos.writechars("中国"); dos.close(); } }
package com.wxd.test2; import java.io.datainputstream; import java.io.fileinputstream; import java.io.ioexception; public class disdemo { public static void main(string[] args) throws ioexception { string file="demo/dos.dat"; datainputstream dis=new datainputstream(new fileinputstream(file)); int i=dis.readint();//其实做了4次read,因为int是32位 system.out.println(i); i=dis.readint(); system.out.println(i); long l=dis.readlong();//其实做了8次read,应为long是64位 system.out.println(l); double d=dis.readdouble(); system.out.println(d); string s=dis.readutf(); system.out.println(s); dis.close(); } }
8.bufferedinputstream&bufferedoutputstrean这两个流为io提供了带缓冲区的操作,一般打开文件进行写入或读取操作时,都会加上缓冲,这种流模式提高了io性能
从应用程序中把数据放入文件,相当于将一缸水倒入到另一个缸中:
- fileoutputstream--->write()方法相当于一滴一滴地把水转移过去
- dataoutputstream--->writexxx()方法会方便一些,相当于一瓢一瓢的把水转移过去
- bufferedoutputstream--->write()方法相当于一瓢一瓢先放入桶中,再从桶中倒入缸中
/*** *进行文件的拷贝,利用带缓冲的字节流 * @param srcfile * @param destfile * @throws ioexception */ public static void copyfilebybuffer(file srcfile,file destfile) throws ioexception{ if(!srcfile.exists()){ throw new illegalargumentexception("文件:"+srcfile+"不存在"); } if(!srcfile.isfile()){ throw new illegalargumentexception(srcfile+"不是文件!"); } bufferedinputstream bis=new bufferedinputstream(new fileinputstream(srcfile)); bufferedoutputstream bos=new bufferedoutputstream(new fileoutputstream(destfile)); int c; while ((c=bis.read())!=-1){ bos.write(c); bos.flush();//刷新缓冲区,否则写入不到; } bis.close(); bos.close(); }
字符流
1.编码问题
2.认识文本和文本文件
3.java的文本(char)是16位无符号的整数,是字符的unicode编码(双字节编码)文件是byte byte byte...的数据序列
文本文件是文本(char)序列按照某种编码方案(utf-8,utf-16be,gbk)序列化为byte的存储
4.字符流(reader writer):--->操作的是文本文件
字符的处理,一次处理一个字符
字符的底层任然是基本的字节序列
字符流的基本实现
inputstreamreader 完成byte流解析为char流,按照编码解析
outputstreamwriter 提供char流到byte流,按照编码处理
package com.wxd.test2; import java.io.*; public class israndoswdemo { public static void main(string[] args) throws ioexception{ //inputstreamreader被称为桥梁流 fileinputstream in=new fileinputstream("demo\\test.txt");//默认项目的编码,操作的时候要写文件本身的编码 inputstreamreader isr=new inputstreamreader(in,"utf-8"); fileoutputstream out=new fileoutputstream("demo\\test2.txt"); outputstreamwriter osw=new outputstreamwriter(out,"utf-8"); // int c; // while ((c=isr.read())!=-1){ // system.out.print((char)c); // } char[] buffer=new char[8*1024]; int c; //批量读取,放入buffer这个字符数组,从第0个位置开始放置,最多放buffe.length个 //返回的是读到的字符的个数 while ((c=isr.read(buffer,0,buffer.length))!=-1){ string s=new string(buffer,0,c); system.out.println(s); osw.write(buffer,0,c); osw.flush(); } isr.close(); osw.close(); } }
5.filereader/filewriter(这种方式bu)
package com.wxd.test2; import java.io.filereader; import java.io.filewriter; import java.io.ioexception; public class frandfwdemo { public static void main(string[] args) throws ioexception{ filereader fr=new filereader("demo\\test.txt"); filewriter fw=new filewriter("demo\\text2.txt",true);//设置为true在后面追加 char[] buffer=new char[2056]; int c; while ((c=fr.read(buffer,0,buffer.length))!=-1){ fw.write(buffer,0,c); fw.flush(); } fr.close(); fw.close(); } }
6.字符流的过滤器
bufferedreader ----->readline一次读一行
bufferedwriter/printwriter ---->写一行
package com.wxd.test2; import java.io.*; public class brandbworpwdemo { public static void main(string[] args) throws ioexception { //对文件进行读写操作 bufferedreader br = new bufferedreader(new inputstreamreader(new fileinputstream("demo\\test.txt"))); /*bufferedwriter bw=new bufferedwriter(new outputstreamwriter(new fileoutputstream("demo\\test3.txt")));*/ printwriter pw = new printwriter("demo\\test3.txt"); string line; while ((line = br.readline()) != null) { system.out.println(line);//一次读一行,并不能识别换行 /*bw.write(line); //单独写出换行操作 bw.newline(); bw.flush();*/ pw.println(line); pw.flush(); } br.close(); // bw.close(); pw.close(); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。