为了账号安全,请及时绑定邮箱和手机立即绑定

IO流的read(),无参与含参的区别

标签:
Java

无参数的read()方法是每次读取一个char字符,有参数的read(buffer, 0, buffer.length)是将读取的内容先放到buffer中去,而返回的是每次读取的char字符个数!
1、
c = isr.read() Reads a single character 读取单个character
the next byte of data, or -1 if the end of the file is reached
返回下一个next byte of data
2、
c = isr.read(byte[] , start,len) Reads characters into a portion of an array 读取多个charachters
返回the total number of bytes read into the buffer, or -1 if there is no more data because the end of the file has been reached.
返回total所有的number,也就数量

The character read, or -1 if the end of the stream has been reached
如果流读取结束,将返回-1
The number of characters read, or -1 if the end of the stream has been reached
如果流读取结束,返回-1
所以read()不是表示读取的计数,或者位置,表示下一个byte.

http://www.imooc.com/video/3639/0

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消