12

次の例外が発生する理由:

Exception in thread "main" java.io.IOException: Push back buffer is full
    at java.io.PushbackInputStream.unread(PushbackInputStream.java:232)
    at java.io.PushbackInputStream.unread(PushbackInputStream.java:252)
    at org.tests.io.PushBackStream_FUN.read(PushBackStream_FUN.java:32)
    at org.tests.io.PushBackStream_FUN.main(PushBackStream_FUN.java:43)

このコードでは:

public class PushBackStream_FUN {
    public int write(String outFile) throws Exception {
        FileOutputStream outputStream = new FileOutputStream(new File(outFile));
        String str = new String("Hello World");
        byte[] data = str.getBytes();
        outputStream.write(data);
        outputStream.close();

        return data.length;
    }

    public void read(String inFile, int ln) throws Exception {
        PushbackInputStream inputStream = new PushbackInputStream(new FileInputStream(new File(inFile)));
        byte[] data = new byte[ln];
        String str;

        // read
        inputStream.read(data);
        str = new String(data);
        System.out.println("MSG_0 = "+str);
        // unread
        inputStream.unread(data);
        // read
        inputStream.read(data);
        str = new String(data);
        System.out.println("MSG_1 = "+str);
    }

    public static void main(final String[] args) throws Exception {
        PushBackStream_FUN fun = new PushBackStream_FUN();
        String path = "aome/path/output_PushBack_FUN";
        int ln = fun.write(path);
        fun.read(path, ln);
    }
}

アップデート

これが解決策だと考えてください。救助へのJavaソース。私はいくつかの「実験」をしました。指定PushbackInputStreamしたバッファサイズで指定すると機能することがわかりました。Javaソースはこれを教えてくれます:

public PushbackInputStream(InputStream in) {
        this(in, 1);
    }

public PushbackInputStream(InputStream in, int size) {
        super(in);
        if (size <= 0) {
            throw new IllegalArgumentException("size <= 0");
        }
        this.buf = new byte[size];
        this.pos = size;
    }

PushbackInputStreamデフォルトのバッファサイズを使用するコンストラクタで使用すると、1バイトしか読み込めないと思います。私は1バイト以上を読み込んでいないため、例外です。

4

1 に答える 1

15

デフォルトでは、1 文字PushbackInputStreamに十分なスペースのみを割り当てます。unread()それ以上押し戻せるようにしたい場合は、建設時に容量を指定する必要があります。

あなたの場合、次のようになります。

final PushbackInputStream pis = new PushbackInputStream( inputStream, ln );
于 2014-05-23T05:07:43.927 に答える