public class java.io.InputStreamReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.InputStreamReader
  super_class: java.io.Reader
{
  private final sun.nio.cs.StreamDecoder sd;
    descriptor: Lsun/nio/cs/StreamDecoder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.io.InputStreamReader this
        start local 1 // java.io.InputStream in
         0: .line 72
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.Reader.<init>:(Ljava/lang/Object;)V
         1: .line 74
            aload 0 /* this */
            aload 1 /* in */
            aload 0 /* this */
            aconst_null
            invokestatic sun.nio.cs.StreamDecoder.forInputStreamReader:(Ljava/io/InputStream;Ljava/lang/Object;Ljava/lang/String;)Lsun/nio/cs/StreamDecoder;
            putfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
         2: .line 75
            goto 5
      StackMap locals: java.io.InputStreamReader java.io.InputStream
      StackMap stack: java.io.UnsupportedEncodingException
         3: astore 2 /* e */
        start local 2 // java.io.UnsupportedEncodingException e
         4: .line 77
            new java.lang.Error
            dup
            aload 2 /* e */
            invokespecial java.lang.Error.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.UnsupportedEncodingException e
         5: .line 79
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.io.InputStream in
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/InputStreamReader;
            0    6     1    in  Ljava/io/InputStream;
            4    5     2     e  Ljava/io/UnsupportedEncodingException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.UnsupportedEncodingException
    MethodParameters:
      Name  Flags
      in    

  public void <init>(java.io.InputStream, java.lang.String);
    descriptor: (Ljava/io/InputStream;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.InputStreamReader this
        start local 1 // java.io.InputStream in
        start local 2 // java.lang.String charsetName
         0: .line 97
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.Reader.<init>:(Ljava/lang/Object;)V
         1: .line 98
            aload 2 /* charsetName */
            ifnonnull 3
         2: .line 99
            new java.lang.NullPointerException
            dup
            ldc "charsetName"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 100
      StackMap locals: java.io.InputStreamReader java.io.InputStream java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            aload 0 /* this */
            aload 2 /* charsetName */
            invokestatic sun.nio.cs.StreamDecoder.forInputStreamReader:(Ljava/io/InputStream;Ljava/lang/Object;Ljava/lang/String;)Lsun/nio/cs/StreamDecoder;
            putfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
         4: .line 101
            return
        end local 2 // java.lang.String charsetName
        end local 1 // java.io.InputStream in
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Ljava/io/InputStreamReader;
            0    5     1           in  Ljava/io/InputStream;
            0    5     2  charsetName  Ljava/lang/String;
    Exceptions:
      throws java.io.UnsupportedEncodingException
    MethodParameters:
             Name  Flags
      in           
      charsetName  

  public void <init>(java.io.InputStream, java.nio.charset.Charset);
    descriptor: (Ljava/io/InputStream;Ljava/nio/charset/Charset;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.InputStreamReader this
        start local 1 // java.io.InputStream in
        start local 2 // java.nio.charset.Charset cs
         0: .line 113
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.Reader.<init>:(Ljava/lang/Object;)V
         1: .line 114
            aload 2 /* cs */
            ifnonnull 3
         2: .line 115
            new java.lang.NullPointerException
            dup
            ldc "charset"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 116
      StackMap locals: java.io.InputStreamReader java.io.InputStream java.nio.charset.Charset
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            aload 0 /* this */
            aload 2 /* cs */
            invokestatic sun.nio.cs.StreamDecoder.forInputStreamReader:(Ljava/io/InputStream;Ljava/lang/Object;Ljava/nio/charset/Charset;)Lsun/nio/cs/StreamDecoder;
            putfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
         4: .line 117
            return
        end local 2 // java.nio.charset.Charset cs
        end local 1 // java.io.InputStream in
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/InputStreamReader;
            0    5     1    in  Ljava/io/InputStream;
            0    5     2    cs  Ljava/nio/charset/Charset;
    MethodParameters:
      Name  Flags
      in    
      cs    

  public void <init>(java.io.InputStream, java.nio.charset.CharsetDecoder);
    descriptor: (Ljava/io/InputStream;Ljava/nio/charset/CharsetDecoder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.InputStreamReader this
        start local 1 // java.io.InputStream in
        start local 2 // java.nio.charset.CharsetDecoder dec
         0: .line 129
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.Reader.<init>:(Ljava/lang/Object;)V
         1: .line 130
            aload 2 /* dec */
            ifnonnull 3
         2: .line 131
            new java.lang.NullPointerException
            dup
            ldc "charset decoder"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 132
      StackMap locals: java.io.InputStreamReader java.io.InputStream java.nio.charset.CharsetDecoder
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            aload 0 /* this */
            aload 2 /* dec */
            invokestatic sun.nio.cs.StreamDecoder.forInputStreamReader:(Ljava/io/InputStream;Ljava/lang/Object;Ljava/nio/charset/CharsetDecoder;)Lsun/nio/cs/StreamDecoder;
            putfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
         4: .line 133
            return
        end local 2 // java.nio.charset.CharsetDecoder dec
        end local 1 // java.io.InputStream in
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/InputStreamReader;
            0    5     1    in  Ljava/io/InputStream;
            0    5     2   dec  Ljava/nio/charset/CharsetDecoder;
    MethodParameters:
      Name  Flags
      in    
      dec   

  public java.lang.String getEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.InputStreamReader this
         0: .line 156
            aload 0 /* this */
            getfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
            invokevirtual sun.nio.cs.StreamDecoder.getEncoding:()Ljava/lang/String;
            areturn
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStreamReader;

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.InputStreamReader this
         0: .line 168
            aload 0 /* this */
            getfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
            invokevirtual sun.nio.cs.StreamDecoder.read:()I
            ireturn
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStreamReader;
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.io.InputStreamReader this
        start local 1 // char[] cbuf
        start local 2 // int offset
        start local 3 // int length
         0: .line 185
            aload 0 /* this */
            getfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
            aload 1 /* cbuf */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual sun.nio.cs.StreamDecoder.read:([CII)I
            ireturn
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] cbuf
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Ljava/io/InputStreamReader;
            0    1     1    cbuf  [C
            0    1     2  offset  I
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      cbuf    
      offset  
      length  

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.InputStreamReader this
         0: .line 196
            aload 0 /* this */
            getfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
            invokevirtual sun.nio.cs.StreamDecoder.ready:()Z
            ireturn
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/InputStreamReader;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.InputStreamReader this
         0: .line 200
            aload 0 /* this */
            getfield java.io.InputStreamReader.sd:Lsun/nio/cs/StreamDecoder;
            invokevirtual sun.nio.cs.StreamDecoder.close:()V
         1: .line 201
            return
        end local 0 // java.io.InputStreamReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/InputStreamReader;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "InputStreamReader.java"