欢迎来到天天文库
浏览记录
ID:52061334
大小:372.00 KB
页数:72页
时间:2020-03-31
《Java语言的输入输出流.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第10章Java语言的输入输出与文件处理Evaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.本章主要内容流的概念处理字节流的基本类:InputStream和OutputStream处理字符流的基本类:Reader和Writer标准输入输出文件管理类:FileEvaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011A
2、sposePtyLtd.10.1Java语言的输入输出类库流(stream)是指计算机各部件之间的数据流动。流是由位或字符组合而成的序列。分类:传输方向:输入流与输出流内容上:字符流和字节流Evaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.流用来顺序地读写数据信息,它是一个单向的数据通道。输入流从某个外部的数据源向程序输入数据输出流从程序向外部数据目标输出数据Evaluationonly.CreatedwithAspose.Sli
3、desfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.内存文件输入流InputStream(字节流)Reader(字符流)输出流OutputStream(字节流)Writer(字符流)Evaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.10.2输入输出流类库Java语言的流类都封装在java.io包中。字节流每次读写8位(一个字节)的二进制数,一般为二进制文
4、件。字符流每次读写16位二进制数,并将其作为一个字符而不是二进制为来处理。可以表示任何的文本信息。Evaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.处理字节流:InputStream和OutputStream处理字符流:Reader和WriterEvaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011Aspose
5、PtyLtd.输入流(InputStream)和输出流(OutputStream)构成字节流的祖先,用来读写如图片、声音之类的二进制文件。这两个类直接继承了Object类。InputStream和OutputStream都是抽象类,InputStream为其他所有字节输入流的超类,而OutputStream为其他所有字节输出流的超类。Evaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.Evaluationonly.Createdwi
6、thAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.读取器(Reader)和写出器(Writer)是所有字符流的超类,它们是直接继承Object类的抽象类。用来处理纯文本文件。Reader和Writer可读写16位的字符流。作为抽象类,Reader和Writer必须被子类化才能实现字符流的读写工作。Evaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011Aspo
7、sePtyLtd.Evaluationonly.CreatedwithAspose.Slidesfor.NET3.5ClientProfile5.2.0.0.Copyright2004-2011AsposePtyLtd.10.2使用InputStream和OutputStreamInputStream的方法:publicintread()throwsIOException从输入流读取下一个字节,字节值为0-255,如果输入流中不再有数据,返回-1表示输入结束。这是一个阻塞方法,直
此文档下载收益归作者所有