java中的io流问题 FileInputStream中的read()返回的int类型是读取字节的

java中的io流问题FileInputStream中的read()返回的int类型是读取字节的ASCLL编码么?是一个一个字节读?BufferedInputStream... java中的io流问题
FileInputStream中的read()返回的int类型是读取字节的ASCLL编码么?是一个一个字节读?
BufferedInputStream中的read()返回的是读入字节的长度吗?是一段一段的读吗?谢谢了,感觉好疑惑
展开
 我来答
匿名用户
推荐于2018-04-05
展开全部

不是,两个都是返回Ascll编码,bufferInputStream是缓冲流,提高效率

追问
谢谢
王者强3dde3f
2016-03-29 · TA获得超过338个赞
知道答主
回答量:173
采纳率:100%
帮助的人:80.2万
展开全部
FileInputStream是基础类,字节流,按字节读取。
BufferedInputStream是包装类,处理流,先将数据读于缓冲区,然后再读取
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
我邹是想知道
2016-03-29 · TA获得超过772个赞
知道小有建树答主
回答量:784
采纳率:0%
帮助的人:512万
展开全部
看源码啊,FileInputStream

/**
* Reads a byte of data from this input stream. This method blocks
* if no input is yet available.
*
* @return the next byte of data, or <code>-1</code> if the end of the
* file is reached.
* @exception IOException if an I/O error occurs.
*/
public native int read() throws IOException;

BufferedInputStream

/**
* See
* the general contract of the <code>read</code>
* method of <code>InputStream</code>.
*
* @return the next byte of data, or <code>-1</code> if the end of the
* stream is reached.
* @exception IOException if this input stream has been closed by
* invoking its {@link #close()} method,
* or an I/O error occurs.
* @see java.io.FilterInputStream#in
*/
public synchronized int read() throws IOException {
if (pos >= count) {
fill();
if (pos >= count)
return -1;
}
return getBufIfOpen()[pos++] & 0xff;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式