public abstract class java.io.InputStream implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: java.io.InputStream
  super_class: java.lang.Object
{
  private static final int MAX_SKIP_BUFFER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2048

  private static final int DEFAULT_BUFFER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  private static final int MAX_BUFFER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2147483639

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.InputStream this
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStream;

  public abstract int read();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.io.InputStream this
        start local 1 // byte[] b
         0: .line 106
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual java.io.InputStream.read:([BII)I
            ireturn
        end local 1 // byte[] b
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStream;
            0    1     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // java.io.InputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 167
            aload 1 /* b */
            ifnonnull 2
         1: .line 168
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 169
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 3
            iload 3 /* len */
            iflt 3
            iload 3 /* len */
            aload 1 /* b */
            arraylength
            iload 2 /* off */
            isub
            if_icmple 4
         3: .line 170
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 171
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 6
         5: .line 172
            iconst_0
            ireturn
         6: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.io.InputStream.read:()I
            istore 4 /* c */
        start local 4 // int c
         7: .line 176
            iload 4 /* c */
            iconst_m1
            if_icmpne 9
         8: .line 177
            iconst_m1
            ireturn
         9: .line 179
      StackMap locals: int
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* c */
            i2b
            bastore
        10: .line 181
            iconst_1
            istore 5 /* i */
        start local 5 // int i
        11: .line 183
            goto 17
        12: .line 184
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.io.InputStream.read:()I
            istore 4 /* c */
        13: .line 185
            iload 4 /* c */
            iconst_m1
            if_icmpne 15
        14: .line 186
            goto 20
        15: .line 188
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iload 5 /* i */
            iadd
            iload 4 /* c */
            i2b
            bastore
        16: .line 183
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 5 /* i */
            iload 3 /* len */
            if_icmplt 12
        18: .line 190
            goto 20
      StackMap locals:
      StackMap stack: java.io.IOException
        19: pop
        20: .line 192
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            ireturn
        end local 5 // int i
        end local 4 // int c
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Ljava/io/InputStream;
            0   21     1     b  [B
            0   21     2   off  I
            0   21     3   len  I
            7   21     4     c  I
           11   21     5     i  I
      Exception table:
        from    to  target  type
          11    18      19  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public byte[] readAllBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // java.io.InputStream this
         0: .line 234
            sipush 8192
            newarray 8
            astore 1 /* buf */
        start local 1 // byte[] buf
         1: .line 235
            aload 1 /* buf */
            arraylength
            istore 2 /* capacity */
        start local 2 // int capacity
         2: .line 236
            iconst_0
            istore 3 /* nread */
        start local 3 // int nread
         3: .line 240
            goto 5
        start local 4 // int n
         4: .line 241
      StackMap locals: java.io.InputStream byte[] int int int
      StackMap stack:
            iload 3 /* nread */
            iload 4 /* n */
            iadd
            istore 3 /* nread */
        end local 4 // int n
         5: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buf */
            iload 3 /* nread */
            iload 2 /* capacity */
            iload 3 /* nread */
            isub
            invokevirtual java.io.InputStream.read:([BII)I
            dup
            istore 4 /* n */
        start local 4 // int n
         6: ifgt 4
         7: .line 244
            iload 4 /* n */
            ifge 9
         8: .line 245
            goto 17
         9: .line 248
      StackMap locals: int
      StackMap stack:
            iload 2 /* capacity */
            ldc 2147483639
            iload 2 /* capacity */
            isub
            if_icmpgt 12
        10: .line 249
            iload 2 /* capacity */
            iconst_1
            ishl
            istore 2 /* capacity */
        11: .line 250
            goto 15
        12: .line 251
      StackMap locals:
      StackMap stack:
            iload 2 /* capacity */
            ldc 2147483639
            if_icmpne 14
        13: .line 252
            new java.lang.OutOfMemoryError
            dup
            ldc "Required array size too large"
            invokespecial java.lang.OutOfMemoryError.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 253
      StackMap locals:
      StackMap stack:
            ldc 2147483639
            istore 2 /* capacity */
        15: .line 255
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            iload 2 /* capacity */
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 1 /* buf */
        end local 4 // int n
        16: .line 238
            goto 5
        start local 4 // int n
        17: .line 257
      StackMap locals:
      StackMap stack:
            iload 2 /* capacity */
            iload 3 /* nread */
            if_icmpne 18
            aload 1 /* buf */
            goto 19
      StackMap locals:
      StackMap stack:
        18: aload 1 /* buf */
            iload 3 /* nread */
            invokestatic java.util.Arrays.copyOf:([BI)[B
      StackMap locals:
      StackMap stack: byte[]
        19: areturn
        end local 4 // int n
        end local 3 // int nread
        end local 2 // int capacity
        end local 1 // byte[] buf
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Ljava/io/InputStream;
            1   20     1       buf  [B
            2   20     2  capacity  I
            3   20     3     nread  I
            4    5     4         n  I
            6   16     4         n  I
           17   20     4         n  I
    Exceptions:
      throws java.io.IOException

  public int readNBytes(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // java.io.InputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 304
            aload 1 /* b */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 305
            iload 2 /* off */
            iflt 2
            iload 3 /* len */
            iflt 2
            iload 3 /* len */
            aload 1 /* b */
            arraylength
            iload 2 /* off */
            isub
            if_icmple 3
         2: .line 306
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         3: .line 307
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* n */
        start local 4 // int n
         4: .line 308
            goto 9
         5: .line 309
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* n */
            iadd
            iload 3 /* len */
            iload 4 /* n */
            isub
            invokevirtual java.io.InputStream.read:([BII)I
            istore 5 /* count */
        start local 5 // int count
         6: .line 310
            iload 5 /* count */
            ifge 8
         7: .line 311
            goto 10
         8: .line 312
      StackMap locals: int
      StackMap stack:
            iload 4 /* n */
            iload 5 /* count */
            iadd
            istore 4 /* n */
        end local 5 // int count
         9: .line 308
      StackMap locals:
      StackMap stack:
            iload 4 /* n */
            iload 3 /* len */
            if_icmplt 5
        10: .line 314
      StackMap locals:
      StackMap stack:
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Ljava/io/InputStream;
            0   11     1      b  [B
            0   11     2    off  I
            0   11     3    len  I
            4   11     4      n  I
            6    9     5  count  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // java.io.InputStream this
        start local 1 // long n
         0: .line 340
            lload 1 /* n */
            lstore 3 /* remaining */
        start local 3 // long remaining
         1: .line 343
            lload 1 /* n */
            lconst_0
            lcmp
            ifgt 3
         2: .line 344
            lconst_0
            lreturn
         3: .line 347
      StackMap locals: long
      StackMap stack:
            ldc 2048
            lload 3 /* remaining */
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 6 /* size */
        start local 6 // int size
         4: .line 348
            iload 6 /* size */
            newarray 8
            astore 7 /* skipBuffer */
        start local 7 // byte[] skipBuffer
         5: .line 349
            goto 10
         6: .line 350
      StackMap locals: java.io.InputStream long long top int byte[]
      StackMap stack:
            aload 0 /* this */
            aload 7 /* skipBuffer */
            iconst_0
            iload 6 /* size */
            i2l
            lload 3 /* remaining */
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            invokevirtual java.io.InputStream.read:([BII)I
            istore 5 /* nr */
        start local 5 // int nr
         7: .line 351
            iload 5 /* nr */
            ifge 9
         8: .line 352
            goto 11
         9: .line 354
      StackMap locals: java.io.InputStream long long int int byte[]
      StackMap stack:
            lload 3 /* remaining */
            iload 5 /* nr */
            i2l
            lsub
            lstore 3 /* remaining */
        end local 5 // int nr
        10: .line 349
      StackMap locals: java.io.InputStream long long top int byte[]
      StackMap stack:
            lload 3 /* remaining */
            lconst_0
            lcmp
            ifgt 6
        11: .line 357
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lload 3 /* remaining */
            lsub
            lreturn
        end local 7 // byte[] skipBuffer
        end local 6 // int size
        end local 3 // long remaining
        end local 1 // long n
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Ljava/io/InputStream;
            0   12     1           n  J
            1   12     3   remaining  J
            7   10     5          nr  I
            4   12     6        size  I
            5   12     7  skipBuffer  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.InputStream this
         0: .line 387
            iconst_0
            ireturn
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // java.io.InputStream this
         0: .line 399
            return
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException

  public synchronized void mark(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // java.io.InputStream this
        start local 1 // int readlimit
         0: .line 427
            return
        end local 1 // int readlimit
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Ljava/io/InputStream;
            0    1     1  readlimit  I
    MethodParameters:
           Name  Flags
      readlimit  

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.io.InputStream this
         0: .line 474
            new java.io.IOException
            dup
            ldc "mark/reset not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.InputStream this
         0: .line 490
            iconst_0
            ireturn
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStream;

  public long transferTo(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // java.io.InputStream this
        start local 1 // java.io.OutputStream out
         0: .line 519
            aload 1 /* out */
            ldc "out"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 520
            lconst_0
            lstore 2 /* transferred */
        start local 2 // long transferred
         2: .line 521
            sipush 8192
            newarray 8
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         3: .line 523
            goto 6
        start local 5 // int read
         4: .line 524
      StackMap locals: long byte[] int
      StackMap stack:
            aload 1 /* out */
            aload 4 /* buffer */
            iconst_0
            iload 5 /* read */
            invokevirtual java.io.OutputStream.write:([BII)V
         5: .line 525
            lload 2 /* transferred */
            iload 5 /* read */
            i2l
            ladd
            lstore 2 /* transferred */
        end local 5 // int read
         6: .line 523
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* buffer */
            iconst_0
            sipush 8192
            invokevirtual java.io.InputStream.read:([BII)I
            dup
            istore 5 /* read */
        start local 5 // int read
         7: ifge 4
         8: .line 527
            lload 2 /* transferred */
            lreturn
        end local 5 // int read
        end local 4 // byte[] buffer
        end local 2 // long transferred
        end local 1 // java.io.OutputStream out
        end local 0 // java.io.InputStream this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Ljava/io/InputStream;
            0    9     1          out  Ljava/io/OutputStream;
            2    9     2  transferred  J
            3    9     4       buffer  [B
            4    6     5         read  I
            7    9     5         read  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   
}
SourceFile: "InputStream.java"