java字节流和字符流的区别介绍.doc

java字节流和字符流的区别介绍.doc

ID:59119922

大小:36.50 KB

页数:13页

时间:2020-09-15

java字节流和字符流的区别介绍.doc_第1页
java字节流和字符流的区别介绍.doc_第2页
java字节流和字符流的区别介绍.doc_第3页
java字节流和字符流的区别介绍.doc_第4页
java字节流和字符流的区别介绍.doc_第5页
资源描述:

《java字节流和字符流的区别介绍.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、字节流和字符流在整个IO包中,流的操作分为两种:·字节流

2、·字节输出流OutputStream、字节输入流InputStream·字符流:一个字符=两个字节

3、·字节输出流Writer,字节输入流ReaderIO操作的基本步骤:1、使用File找到一个文件2、使用字节流或字符流的子类为OutputStream、InputStream、Writer、Reader进行实例化操作3、进行读写的操作4、关闭:close(),在流的操作中最终必修进行关闭。字节输出流:OutputStream在Javaio中OutputStream是字节输出流的最大父类。此类是一个抽象类,所以使用时修要依靠子类进行实

4、例化操作。如果此时要完成文件的输出操作,则使用FileOutputStream为OutputStream进行实例化操作:OutputStreamout=newFileOutputStream(Filef)OutputStream提供了一下的写入数据的方法:·写入全部字节数组:pubicvoidwriter(byte[]b)throwsIOException·写入部分字节数组:publicvoidwriter(byte[]b,intoff,intlen)throwsIOException·写入一个数据:publicabstractvoidwriter(intb)throwsIOExcept

5、ionimportjava.io.File;importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.OutputStream;publicclassOutputStreamdemo{publicstaticvoidmain(String[]args)throwsIOException{Filefile=newFile("d:"+File.separator+"demo.txt");OutputStreamout=newFileOut

6、putStream(file);Strings="Helloworld";byte[]b=s.getBytes();//将字符串转换为byte数组out.write(b);//输出Helloworldout.write(b,0,5);//输出Helloout.close();}}以上操作是将全部字节数组内容输出,当然,也可以同过循环一个个的输出:importjava.io.File;importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.IOException;importjava.

7、io.OutputStream;publicclassCopyOfOutputStreamdemo2{publicstaticvoidmain(String[]args)throwsIOException{Filefile=newFile("d:"+File.separator+"demo.txt");OutputStreamout=newFileOutputStream(file);Strings="Helloworld";byte[]b=s.getBytes();//将字符串转换为byte数组for(inti=0;i

8、数组中的字符一个个的输出}out.close();}}如果要向文件中追加内容则需要调用FileOutputStream类的另外一个构造方法:pubicOutputStream(Filefile,booleamappend)throwsFileNotFoundException,如果将append的内容设置为true,则表示增加内容。importjava.io.File;importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.Outp

9、utStream;publicclassCopyOfOutputStreamdemo2{publicstaticvoidmain(String[]args)throwsIOException{Filefile=newFile("d:"+File.separator+"demo.txt");OutputStreamout=newFileOutputStream(file,true);Strings="Helloworldr";/

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。