1

Androidアプリのイベントログで、UTFDataFormatExceptionエラーが発生していることに気づきました。私が読んでいるファイルは私のアプリによって書かれていますが、ユーザーのストーリーに関する情報が格納されているため、あらゆる種類の文字/文字列を含めることができます。特定の文字の読み取り/書き込みに問題があるかどうか疑問に思っていますか?

私は以下を使用して書きます:

dos.writeUTF(myJSONString);

そして私は以下を使用して読みました:

textJSONString = dis.readUTF();

私が記録したエラースタックトレースのいくつかは次のとおりです。

class: class java.io.UTFDataFormatException

message: bad second or third byte at 1795

    java.io.charset.ModifiedUtf8.decode(ModifiedUtf8.java:53) 
java.io.DataInputStream.decodeUTF(DataInputStream.java:444) 
java.io.DataInputStream.decodeUTF(DataInputStream.java:438) 
java.io.DataInputStream.readUTF(DataInputStream.java:433)...

デコードメソッドのソースを調べましたが、何が起こっているのか/なぜ失敗しているのかわかりません:

public static String decode(byte[] in, char[] out, int offset, int utfSize) throws UTFDataFormatException {
        int count = 0, s = 0, a;
        while (count < utfSize) {
            if ((out[s] = (char) in[offset + count++]) < '\u0080') {
                s++;
            } else if (((a = out[s]) & 0xe0) == 0xc0) {
                if (count >= utfSize) {
                    throw new UTFDataFormatException("bad second byte at " + count);
                }
                int b = in[offset + count++];
                if ((b & 0xC0) != 0x80) {
                    throw new UTFDataFormatException("bad second byte at " + (count - 1));
                }
                out[s++] = (char) (((a & 0x1F) << 6) | (b & 0x3F));
            } else if ((a & 0xf0) == 0xe0) {
                if (count + 1 >= utfSize) {
                    throw new UTFDataFormatException("bad third byte at " + (count + 1));
                }
                int b = in[offset + count++];
                int c = in[offset + count++];
                if (((b & 0xC0) != 0x80) || ((c & 0xC0) != 0x80)) {
                    throw new UTFDataFormatException("bad second or third byte at " + (count - 2));
                }
                out[s++] = (char) (((a & 0x0F) << 12) | ((b & 0x3F) << 6) | (c & 0x3F));
            } else {
                throw new UTFDataFormatException("bad byte at " + (count - 1));
            }
        }
        return new String(out, 0, s);
    }

何か案は?

4

1 に答える 1

1

このエラーは、ファイルが破損していることを示します (つまり、適切にエンコードされた UTF8 ではありません)。ファイルを書き込んだ後、ファイルを適切に閉じていますか? バッファリングされた出力ストリームに書き込んでいて、ストリームを適切に閉じないと、これらのエラーが発生することが想像できます。次に、一部のバイトが書き込まれず、再読み取りできない破損したファイルが作成されます。

于 2012-06-26T15:36:33.617 に答える