public class CoderResult
extends Object
java.lang.Object | |
↳ | java.nio.charset.CoderResult |
编码器结果状态的描述。
字符编码器,即解码器或编码器,消耗来自输入缓冲器的字节(或字符),翻译它们,并将结果字符(或字节)写入输出缓冲器。 编码过程因以下四类原因之一而终止:该类由实例描述:
如果没有更多的输入需要处理,或者输入数据不足,需要额外的输入,则会报告下溢 。 该条件由唯一结果对象UNDERFLOW
,其isUnderflow
方法返回true 。
当输出缓冲区中剩余空间不足时会报告溢出 。 此情况由唯一结果对象OVERFLOW
,其isOverflow
方法返回true 。
当输入单元序列格式不正确时,会报告格式错误的输入错误 。 此类错误由该类的实例描述,该类的isMalformed
方法返回true ,其length
方法返回格式错误的序列的长度。 对于给定长度的所有格式错误的输入错误,这个类有一个唯一的实例。
当输入单元序列表示不能在输出字符集中表示的字符时,会报告不可映射字符错误 。 此类错误由该类的实例描述,该类的isUnmappable
方法返回true ,其length
方法返回表示不可映射字符的输入序列的长度。 对于给定长度的所有不可映射字符错误,此类有一个唯一的实例。
isError
method returns
true for result objects that describe malformed-input and unmappable-character errors but
false for those that describe underflow or overflow conditions.
Fields |
|
---|---|
public static final CoderResult |
OVERFLOW 结果对象指示溢出,意味着输出缓冲区中没有足够的空间。 |
public static final CoderResult |
UNDERFLOW 指示下溢的结果对象,表示输入缓冲区已被完全消耗,或者如果输入缓冲区尚未为空,则需要额外的输入。 |
Public methods |
|
---|---|
boolean |
isError() 告诉这个对象是否描述了一个错误条件。 |
boolean |
isMalformed() 告诉这个对象是否描述格式错误的输入错误。 |
boolean |
isOverflow() 告诉这个对象是否描述了溢出情况。 |
boolean |
isUnderflow() 告诉这个对象是否描述了一个下溢条件。 |
boolean |
isUnmappable() 告诉这个对象是否描述了一个不可映射的字符错误。 |
int |
length() 返回此对象描述的错误输入的长度 (可选操作) 。 |
static CoderResult |
malformedForLength(int length) 静态工厂方法,返回描述给定长度的格式错误的输入错误的唯一对象。 |
void |
throwException() 引发适用于此对象描述的结果的异常。 |
String |
toString() 返回描述此编码器结果的字符串。 |
static CoderResult |
unmappableForLength(int length) 静态工厂方法,返回描述给定长度的不可映射字符错误的唯一结果对象。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
CoderResult OVERFLOW
Result object indicating overflow, meaning that there is insufficient room in the output buffer.
CoderResult UNDERFLOW
Result object indicating underflow, meaning that either the input buffer has been completely consumed or, if the input buffer is not yet empty, that additional input is required.
boolean isError ()
告诉这个对象是否描述了一个错误条件。
Returns | |
---|---|
boolean |
true if, and only if, this object denotes either a malformed-input error or an unmappable-character error |
boolean isMalformed ()
告诉这个对象是否描述格式错误的输入错误。
Returns | |
---|---|
boolean |
true if, and only if, this object denotes a malformed-input error |
boolean isOverflow ()
告诉这个对象是否描述了溢出情况。
Returns | |
---|---|
boolean |
true if, and only if, this object denotes overflow |
boolean isUnderflow ()
告诉这个对象是否描述了一个下溢条件。
Returns | |
---|---|
boolean |
true if, and only if, this object denotes underflow |
boolean isUnmappable ()
告诉这个对象是否描述了一个不可映射的字符错误。
Returns | |
---|---|
boolean |
true if, and only if, this object denotes an unmappable-character error |
int length ()
Returns the length of the erroneous input described by this object (optional operation).
Returns | |
---|---|
int |
The length of the erroneous input, a positive integer |
Throws | |
---|---|
UnsupportedOperationException |
If this object does not describe an error condition, that is, if the isError does not return true |
CoderResult malformedForLength (int length)
静态工厂方法,返回描述给定长度的格式错误的输入错误的唯一对象。
Parameters | |
---|---|
length |
int
|
Returns | |
---|---|
CoderResult |
The requested coder-result object |
void throwException ()
引发适用于此对象描述的结果的异常。
Throws | |
---|---|
BufferUnderflowException |
If this object is UNDERFLOW |
BufferOverflowException |
If this object is OVERFLOW |
MalformedInputException |
If this object represents a malformed-input error; the exception's length value will be that of this object |
UnmappableCharacterException |
If this object represents an unmappable-character error; the exceptions length value will be that of this object |
CharacterCodingException |
String toString ()
返回描述此编码器结果的字符串。
Returns | |
---|---|
String |
A descriptive string |
CoderResult unmappableForLength (int length)
静态工厂方法,返回描述给定长度的不可映射字符错误的唯一结果对象。
Parameters | |
---|---|
length |
int
|
Returns | |
---|---|
CoderResult |
The requested coder-result object |