Java IO - Reader

2024-05-09 13:18
文章标签 java io reader

本文主要是介绍Java IO - Reader,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言

JavaIO一共包括两种,一种是stream,一种是reader/writer,每种又包括in/out,所以一共是四种包。Java 流在处理上分为字符流和字节流。字符流处理的单元为 2 个字节的 Unicode 字符,分别操作字符、字符数组或字符串,而字节流处理单元为 1 个字节,操作字节和字节数组。
Java 内用 Unicode 编码存储字符,字符流处理类负责将外部的其他编码的字符流和 java 内 Unicode 字符流之间的转换。而类 InputStreamReader 和 OutputStreamWriter 处理字符流和字节流的转换。字符流(一次可以处理一个缓冲区)一次操作比字节流(一次一个字节)效率高。

0. 目录

  1. Reader
  2. BufferedReader
  3. InputStreamReader
  4. FileReader
  5. 总结

1. Reader

reader
Reader是一个抽象类,其介绍如下:

Abstract class for reading character streams. The only methods that a subclass must implement are read(char[], int, int) and close(). Most subclasses, however, will override some of the methods defined here in order to provide higher efficiency, additional functionality, or both.

1.1 主要方法

abstract void   close()
Closes the stream and releases any system resources associated with it.void    mark(int readAheadLimit)
Marks the present position in the stream.boolean markSupported()
Tells whether this stream supports the mark() operation.int read()
Reads a single character.int read(char[] cbuf)
Reads characters into an array.abstract int    read(char[] cbuf, int off, int len)
Reads characters into a portion of an array.int read(CharBuffer target)
Attempts to read characters into the specified character buffer.boolean ready()
Tells whether this stream is ready to be read.void    reset()
Resets the stream.long    skip(long n)
Skips characters.

注意,不同于stream的是reader读的是char[]。
其常见的子类包括BufferedReader和InputStreamReader,InputStreamReader的子类FileReader也很常见,下面简单介绍一下。

2. BufferedReader

BufferedReader继承Reader,本身的方法非常简单,其官方解释如下:

Reads text from a character-input stream, buffering characters so as to provide for the efficient reading of characters, arrays, and lines.
The buffer size may be specified, or the default size may be used. The default is large enough for most purposes.

简单翻译一下:

从流里面读取文本,通过缓存的方式提高效率,读取的内容包括字符、数组和行。
缓存的大小可以指定,也可以用默认的大小。大部分情况下,默认大小就够了。

2.1. 构造函数

BufferedReader有两个构造函数,其声明如下:

BufferedReader(Reader in)
Creates a buffering character-input stream that uses a default-sized input buffer.BufferedReader(Reader in, int sz)
Creates a buffering character-input stream that uses an input bufferof the specified size.

一个是传一个Reader,另外一个增加了缓存的大小。

常见的初始化方法

BufferedReader br = new BufferedReader(new FileReader("d:/123.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

第一个方法是读取一个文件;第二个方法是从标准输入读。

2.2. 主要方法

void    close()
Closes the stream and releases any system resources associated with it.void    mark(int readAheadLimit)
Marks the present position in the stream.boolean markSupported()
Tells whether this stream supports the mark() operation, which it does.int read()
Reads a single character.int read(char[] cbuf, int off, int len)
Reads characters into a portion of an array.String  readLine()
Reads a line of text.boolean ready()
Tells whether this stream is ready to be read.void    reset()
Resets the stream to the most recent mark.long    skip(long n)
Skips characters.

提供了三种读数据的方法read、read(char[] cbuf, int off, int len)、readLine(),其中常用的是readLine。

3. InputStreamReader

InputStreamReader的介绍如下:

An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes them into characters using a specified charset. The charset that it uses may be specified by name or may be given explicitly, or the platform's default charset may be accepted.
Each invocation of one of an InputStreamReader's read() methods may cause one or more bytes to be read from the underlying byte-input stream. To enable the efficient conversion of bytes to characters, more bytes may be read ahead from the underlying stream than are necessary to satisfy the current read operation.
For top efficiency, consider wrapping an InputStreamReader within a BufferedReader. For example:

 BufferedReader in= new BufferedReader(new InputStreamReader(System.in));

也就是说,InputStreamReader是把字节翻译成字符的。

3.1构造函数

InputStreamReader(InputStream in)
Creates an InputStreamReader that uses the default charset.InputStreamReader(InputStream in, Charset cs)
Creates an InputStreamReader that uses the given charset.InputStreamReader(InputStream in, CharsetDecoder dec)
Creates an InputStreamReader that uses the given charset decoder.InputStreamReader(InputStream in, String charsetName)
Creates an InputStreamReader that uses the named charset.

可以看到,InputStreamReader的构造函数会传入一个字符编码,通常用InputStreamReader来解决乱码问题。

3.2. 主要方法

void    close()
Closes the stream and releases any system resources associated with it.String  getEncoding()
Returns the name of the character encoding being used by this stream.int read()
Reads a single character.int read(char[] cbuf, int offset, int length)
Reads characters into a portion of an array.boolean ready()
Tells whether this stream is ready to be read.

3.3. 示例代码

经常用InputStreamReader解决乱码问题,示例代码如下:

    private void test() throws Throwable {BufferedReader in = null;try {InputStreamReader isr = new InputStreamReader(new FileInputStream("d:/123.txt"), "UTF-8");in = new BufferedReader(isr);while (true) {String lineMsg = in.readLine();if (lineMsg == null || lineMsg.equals("")) {break;}}} catch (Throwable t) {throw t;} finally {try {if (in != null) {in.close();}} catch (Throwable t) {throw t;}}}

编码集见本文末尾。

4. FileReader

其介绍如下:

Convenience class for reading character files. The constructors of this class assume that the default character encoding and the default byte-buffer size are appropriate. To specify these values yourself, construct an InputStreamReader on a FileInputStream.
FileReader is meant for reading streams of characters. For reading streams of raw bytes, consider using a FileInputStream.
FileReader是方便读取字符文件的。

4.1. 构造函数

FileReader(File file)
Creates a new FileReader, given the File to read from.FileReader(FileDescriptor fd)
Creates a new FileReader, given the FileDescriptor to read from.FileReader(String fileName)
Creates a new FileReader, given the name of the file to read from.

可以看到,FileReader的构造函数主要是读取文件。

5. 总结一下:

1. BufferedReader可以更高效的读取文件
2. InputStreamReader可以处理乱码问题
3. FileReader可以直接读取文件,方便
4. 常见编码
  • 7位ASCII字符,也叫作ISO646-US、Unicode字符集的基本拉丁块
    "US-ASCII"
  • ISO 拉丁字母表 No.1,也叫作 ISO-LATIN-1
    "ISO-8859-1"
  • 8 位 UCS 转换格式
    "UTF-8"
  • 16 位 UCS 转换格式,Big Endian(最低地址存放高位字节)字节顺序
    "UTF-16BE"
  • 16 位 UCS 转换格式,Little-endian(最高地址存放低位字节)字节顺序
    "UTF-16LE"
  • 16 位 UCS 转换格式,字节顺序由可选的字节顺序标记来标识
    "UTF-16"
  • 中文超大字符集
    "GBK"

这篇关于Java IO - Reader的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/973517

相关文章

SpringBoot整合Flowable实现工作流的详细流程

《SpringBoot整合Flowable实现工作流的详细流程》Flowable是一个使用Java编写的轻量级业务流程引擎,Flowable流程引擎可用于部署BPMN2.0流程定义,创建这些流程定义的... 目录1、流程引擎介绍2、创建项目3、画流程图4、开发接口4.1 Java 类梳理4.2 查看流程图4

一文详解如何在idea中快速搭建一个Spring Boot项目

《一文详解如何在idea中快速搭建一个SpringBoot项目》IntelliJIDEA作为Java开发者的‌首选IDE‌,深度集成SpringBoot支持,可一键生成项目骨架、智能配置依赖,这篇文... 目录前言1、创建项目名称2、勾选需要的依赖3、在setting中检查maven4、编写数据源5、开启热

Java对异常的认识与异常的处理小结

《Java对异常的认识与异常的处理小结》Java程序在运行时可能出现的错误或非正常情况称为异常,下面给大家介绍Java对异常的认识与异常的处理,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参... 目录一、认识异常与异常类型。二、异常的处理三、总结 一、认识异常与异常类型。(1)简单定义-什么是

SpringBoot项目配置logback-spring.xml屏蔽特定路径的日志

《SpringBoot项目配置logback-spring.xml屏蔽特定路径的日志》在SpringBoot项目中,使用logback-spring.xml配置屏蔽特定路径的日志有两种常用方式,文中的... 目录方案一:基础配置(直接关闭目标路径日志)方案二:结合 Spring Profile 按环境屏蔽关

Java使用HttpClient实现图片下载与本地保存功能

《Java使用HttpClient实现图片下载与本地保存功能》在当今数字化时代,网络资源的获取与处理已成为软件开发中的常见需求,其中,图片作为网络上最常见的资源之一,其下载与保存功能在许多应用场景中都... 目录引言一、Apache HttpClient简介二、技术栈与环境准备三、实现图片下载与保存功能1.

SpringBoot排查和解决JSON解析错误(400 Bad Request)的方法

《SpringBoot排查和解决JSON解析错误(400BadRequest)的方法》在开发SpringBootRESTfulAPI时,客户端与服务端的数据交互通常使用JSON格式,然而,JSON... 目录问题背景1. 问题描述2. 错误分析解决方案1. 手动重新输入jsON2. 使用工具清理JSON3.

java中long的一些常见用法

《java中long的一些常见用法》在Java中,long是一种基本数据类型,用于表示长整型数值,接下来通过本文给大家介绍java中long的一些常见用法,感兴趣的朋友一起看看吧... 在Java中,long是一种基本数据类型,用于表示长整型数值。它的取值范围比int更大,从-922337203685477

java Long 与long之间的转换流程

《javaLong与long之间的转换流程》Long类提供了一些方法,用于在long和其他数据类型(如String)之间进行转换,本文将详细介绍如何在Java中实现Long和long之间的转换,感... 目录概述流程步骤1:将long转换为Long对象步骤2:将Longhttp://www.cppcns.c

SpringBoot集成LiteFlow实现轻量级工作流引擎的详细过程

《SpringBoot集成LiteFlow实现轻量级工作流引擎的详细过程》LiteFlow是一款专注于逻辑驱动流程编排的轻量级框架,它以组件化方式快速构建和执行业务流程,有效解耦复杂业务逻辑,下面给大... 目录一、基础概念1.1 组件(Component)1.2 规则(Rule)1.3 上下文(Conte

SpringBoot服务获取Pod当前IP的两种方案

《SpringBoot服务获取Pod当前IP的两种方案》在Kubernetes集群中,SpringBoot服务获取Pod当前IP的方案主要有两种,通过环境变量注入或通过Java代码动态获取网络接口IP... 目录方案一:通过 Kubernetes Downward API 注入环境变量原理步骤方案二:通过