类 | 描述 |
---|---|
Charset |
16位Unicode
code units和字节
序列之间的命名映射。
|
CharsetDecoder |
可以将特定字符集中的字节序列转换为十六位Unicode字符序列的引擎。
|
CharsetEncoder |
一种引擎,可以将一系列十六位Unicode字符转换为特定字符集中的字节序列。
|
CoderResult |
编码器的结果状态的描述。
|
CodingErrorAction |
用于编码错误操作的类型安全枚举。
|
StandardCharsets |
常规定义的标准 Charsets 。
|
异常 | 描述 |
---|---|
CharacterCodingException |
发生字符编码或解码错误时抛出的检查异常。
|
IllegalCharsetNameException |
当使用不是
legal charset name的字符串时抛出未检查的异常。
|
MalformedInputException |
当输入字节序列对于给定的字符集不合法时,检查的异常抛出,或输入字符序列不是合法的16位Unicode序列。
|
UnmappableCharacterException |
输入字符(或字节)序列有效但无法映射到输出字节(或字符)序列时抛出的检查异常。
|
UnsupportedCharsetException |
对于请求的字符集,当没有可用的支持时抛出未检查的异常。
|
Error | 描述 |
---|---|
CoderMalfunctionError |
当88420370234048方法的 CharsetDecoder 或encodeLoop 的encodeLoop 方法抛出一个意想不到的异常时抛出错误。
|
Class name
描述
Charset
A named mapping between characters
and bytesCharsetDecoder
Decodes bytes into characters CharsetEncoder
Encodes characters into bytes CoderResult
Describes coder results CodingErrorAction
Describes actions to take when
coding errors are detected
字符集被命名为字节序列的16位Unicode字符序列和之间的映射,在限定的意义上RFC 2278 。 解码器是将特定字符集中的字节转换为字符的引擎, 编码器是将字符转换为字节的引擎。 编码器和解码器对字节和字符缓冲区进行操作。 它们统称为编码器 。
Charset
类定义了为给定字符集创建编码器和检索与字符集关联的各种名称的方法。 它还定义了用于测试是否支持特定字符集的静态方法,用于通过名称查找字符集实例,以及构造包含当前Java虚拟机中可用的每个字符集的映射。
大多数用户不会直接使用这些类; 相反,它们将使用String
类中现有的与charset相关的构造函数和方法,以及现有的InputStreamReader
和OutputStreamWriter
类,所有这些类的实现都已经重做,以利用此包中定义的字符集。 对InputStreamReader
和OutputStreamWriter
类进行了少量更改,以便在构建 这些类的实例时指定显式字符集对象。
可以通过在所定义的接口来提供对新charset的支持CharsetProvider
在java.nio.charset.spi
包类。
除非另有说明,否则将null参数传递给此程序包中任何类或接口中的构造函数或方法将导致抛出NullPointerException
。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.