hjjae2 / anything

:fire: anything
2 stars 0 forks source link

Scanner #11

Open hjjae2 opened 2 years ago

hjjae2 commented 2 years ago

FileInputStream.class

    private native int readBytes(byte[] var1, int var2, int var3) throws IOException;

    public int read(byte[] b) throws IOException {
        return this.readBytes(b, 0, b.length);
    }

    public int read(byte[] b, int off, int len) throws IOException {
        return this.readBytes(b, off, len);
    }