文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java中的InputStreamReader和OutputStreamWriter源码分析_动力节点Java学院整理

2023-05-31 14:24

关注

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

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯