我从以下代码中获取 BufferUnderflowException。
int length = mBuf.remaining();
char[] charBuff = new char[length];
for (int i = 0; i < length; ++i) {
char[i] = mBuf.getChar();
}
mBuf 是一个字节缓冲区。行“char[i] =mBuf.getChar();” 崩溃了。
你怎么看这个问题?
我从以下代码中获取 BufferUnderflowException。
int length = mBuf.remaining();
char[] charBuff = new char[length];
for (int i = 0; i < length; ++i) {
char[i] = mBuf.getChar();
}
mBuf 是一个字节缓冲区。行“char[i] =mBuf.getChar();” 崩溃了。
你怎么看这个问题?
您错误地认为 char 的大小是一个字节。在 Java 中,一个 char 是两个字节,因此mBuf.getChar()
消耗两个字节。文档甚至指出该方法读取接下来的两个字节。
如果您使用mBuf.asCharBuffer()返回的 CharBuffer ,则该缓冲区的 remaining() 方法将为您提供您期望的数字。
更新:根据您的评论,我现在了解到您的缓冲区确实包含单字节字符。由于 Java 处理整个 Unicode 曲目(包含数十万个字符),因此您必须告诉它您正在使用哪个 Charset(字符到字节编码):
// This is a pretty common one-byte charset.
Charset charset = StandardCharsets.ISO_8859_1;
// This is another common one-byte charset. You must use the same charset
// that was used to write the bytes in your ObjectiveC program.
//Charset charset = Charset.forName("windows-1252");
CharBuffer c = charset.newDecoder().decode(mBuf);
char[] charBuff = new char[c.remaining()];
c.get(charBuff);