InputStreamReader和OutputStreamWriter源码分析
1. InputStreamReader 源码(基于jdk1.7.40)
package java.io; import java.nio.charset.Charset; import java.nio.charset.CharsetDecoder; import sun.nio.cs.StreamDecoder; // 将“字节输入流”转换成“字符输入流” public class InputStreamReader extends Reader { private final StreamDecoder sd; // 根据in创建InputStreamReader,使用默认的编码 public InputStreamReader(InputStream in) { super(in); try { sd = StreamDecoder.forInputStreamReader(in, this, (String)null); // ## check lock object } catch (UnsupportedEncodingException e) { // The default encoding should always be available throw new Error(e); } } // 根据in创建InputStreamReader,使用编码charsetName(编码名) public InputStreamReader(InputStream in, String charsetName) throws UnsupportedEncodingException { super(in); if (charsetName == null) throw new NullPointerException("charsetName"); sd = StreamDecoder.forInputStreamReader(in, this, charsetName); } // 根据in创建InputStreamReader,使用编码cs public InputStreamReader(InputStream in, Charset cs) { super(in); if (cs == null) throw new NullPointerException("charset"); sd = StreamDecoder.forInputStreamReader(in, this, cs); } // 根据in创建InputStreamReader,使用解码器dec public InputStreamReader(InputStream in, CharsetDecoder dec) { super(in); if (dec == null) throw new NullPointerException("charset decoder"); sd = StreamDecoder.forInputStreamReader(in, this, dec); } // 获取解码器 public String getEncoding() { return sd.getEncoding(); } // 读取并返回一个字符 public int read() throws IOException { return sd.read(); } // 将InputStreamReader中的数据写入cbuf中,从cbuf的offset位置开始写入,写入长度是length public int read(char cbuf[], int offset, int length) throws IOException { return sd.read(cbuf, offset, length); } // 能否从InputStreamReader中读取数据 public boolean ready() throws IOException { return sd.ready(); } // 关闭InputStreamReader public void close() throws IOException { sd.close(); } }
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机Java中JDom解析XML_动力节点Java学院整理
后端开发2023-05-31
Java分页简介_动力节点Java学院整理
后端开发2023-05-31
Sax解析xml_动力节点Java学院整理
后端开发2023-05-31
Dom4j解析XML_动力节点Java学院整理
后端开发2023-05-31
Java中Random简介_动力节点Java学院整理
后端开发2023-05-31
Java 中HashCode作用_动力节点Java学院整理
后端开发2023-05-31
Java中HashSet和HashMap的区别_动力节点Java学院整理
后端开发2023-05-31
Java字符编码原理(动力节点Java学院整理)
后端开发2023-05-31
Java中的PrintWriter 介绍_动力节点Java学院整理
后端开发2023-05-31
Java中的关键字_动力节点Java学院整理
后端开发2023-05-31
Java数组优点和缺点_动力节点Java学院整理
后端开发2023-05-31
Java中的Web MVC简介_动力节点Java学院整理
后端开发2023-05-31
咦!没有更多了?去看看其它编程学习网 内容吧