public abstract class sun.misc.Resource
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.misc.Resource
  super_class: java.lang.Object
{
  private java.io.InputStream cis;
    descriptor: Ljava/io/InputStream;
    flags: (0x0002) ACC_PRIVATE

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

  public abstract java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.net.URL getURL();
    descriptor: ()Ljava/net/URL;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.net.URL getCodeSourceURL();
    descriptor: ()Ljava/net/URL;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.io.InputStream getInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

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

  private synchronized java.io.InputStream cachedInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.misc.Resource this
         0: .line 76
            aload 0 /* this */
            getfield sun.misc.Resource.cis:Ljava/io/InputStream;
            ifnonnull 2
         1: .line 77
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.misc.Resource.getInputStream:()Ljava/io/InputStream;
            putfield sun.misc.Resource.cis:Ljava/io/InputStream;
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.misc.Resource.cis:Ljava/io/InputStream;
            areturn
        end local 0 // sun.misc.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/misc/Resource;
    Exceptions:
      throws java.io.IOException

  public byte[] getBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // sun.misc.Resource this
         0: .line 89
            aload 0 /* this */
            invokevirtual sun.misc.Resource.cachedInputStream:()Ljava/io/InputStream;
            astore 2 /* in */
        start local 2 // java.io.InputStream in
         1: .line 96
            invokestatic java.lang.Thread.interrupted:()Z
            istore 3 /* isInterrupted */
        start local 3 // boolean isInterrupted
         2: .line 100
      StackMap locals: sun.misc.Resource top java.io.InputStream int
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.misc.Resource.getContentLength:()I
            istore 4 /* len */
        start local 4 // int len
         3: .line 101
            goto 8
        end local 4 // int len
         4: .line 102
      StackMap locals:
      StackMap stack: java.io.InterruptedIOException
            pop
         5: .line 103
            invokestatic java.lang.Thread.interrupted:()Z
            pop
         6: .line 104
            iconst_1
            istore 3 /* isInterrupted */
         7: .line 98
            goto 2
        start local 4 // int len
         8: .line 109
      StackMap locals: int
      StackMap stack:
            iconst_0
            newarray 8
            astore 1 /* b */
        start local 1 // byte[] b
         9: .line 110
            iload 4 /* len */
            iconst_m1
            if_icmpne 10
            ldc 2147483647
            istore 4 /* len */
        10: .line 111
      StackMap locals: sun.misc.Resource byte[] java.io.InputStream int int
      StackMap stack:
            iconst_0
            istore 5 /* pos */
        start local 5 // int pos
        11: .line 112
            goto 31
        12: .line 114
      StackMap locals: int
      StackMap stack:
            iload 5 /* pos */
            aload 1 /* b */
            arraylength
            if_icmplt 17
        13: .line 115
            iload 4 /* len */
            iload 5 /* pos */
            isub
            aload 1 /* b */
            arraylength
            sipush 1024
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* bytesToRead */
        start local 6 // int bytesToRead
        14: .line 116
            aload 1 /* b */
            arraylength
            iload 5 /* pos */
            iload 6 /* bytesToRead */
            iadd
            if_icmpge 18
        15: .line 117
            aload 1 /* b */
            iload 5 /* pos */
            iload 6 /* bytesToRead */
            iadd
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 1 /* b */
        16: .line 119
            goto 18
        end local 6 // int bytesToRead
        17: .line 120
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            arraylength
            iload 5 /* pos */
            isub
            istore 6 /* bytesToRead */
        start local 6 // int bytesToRead
        18: .line 122
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 7 /* cc */
        start local 7 // int cc
        19: .line 124
            aload 2 /* in */
            aload 1 /* b */
            iload 5 /* pos */
            iload 6 /* bytesToRead */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 7 /* cc */
        20: .line 125
            goto 24
      StackMap locals: sun.misc.Resource byte[] java.io.InputStream int int int int int
      StackMap stack: java.io.InterruptedIOException
        21: pop
        22: .line 126
            invokestatic java.lang.Thread.interrupted:()Z
            pop
        23: .line 127
            iconst_1
            istore 3 /* isInterrupted */
        24: .line 129
      StackMap locals:
      StackMap stack:
            iload 7 /* cc */
            ifge 30
        25: .line 130
            iload 4 /* len */
            ldc 2147483647
            if_icmpeq 27
        26: .line 131
            new java.io.EOFException
            dup
            ldc "Detect premature EOF"
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        27: .line 133
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            arraylength
            iload 5 /* pos */
            if_icmpeq 42
        28: .line 134
            aload 1 /* b */
            iload 5 /* pos */
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 1 /* b */
        29: .line 136
            goto 42
        30: .line 139
      StackMap locals:
      StackMap stack:
            iload 5 /* pos */
            iload 7 /* cc */
            iadd
            istore 5 /* pos */
        end local 7 // int cc
        end local 6 // int bytesToRead
        31: .line 112
      StackMap locals:
      StackMap stack:
            iload 5 /* pos */
            iload 4 /* len */
            if_icmplt 12
        end local 5 // int pos
        32: .line 141
            goto 42
        end local 1 // byte[] b
      StackMap locals: sun.misc.Resource top java.io.InputStream int int
      StackMap stack: java.lang.Throwable
        33: astore 8
        34: .line 143
            aload 2 /* in */
            invokevirtual java.io.InputStream.close:()V
        35: .line 144
            goto 39
      StackMap locals: sun.misc.Resource top java.io.InputStream int int top top top java.lang.Throwable
      StackMap stack: java.io.InterruptedIOException
        36: pop
        37: .line 145
            iconst_1
            istore 3 /* isInterrupted */
            goto 39
        38: .line 146
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
        39: .line 148
      StackMap locals:
      StackMap stack:
            iload 3 /* isInterrupted */
            ifeq 41
        40: .line 149
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        41: .line 151
      StackMap locals:
      StackMap stack:
            aload 8
            athrow
        start local 1 // byte[] b
        42: .line 143
      StackMap locals: sun.misc.Resource byte[] java.io.InputStream int int
      StackMap stack:
            aload 2 /* in */
            invokevirtual java.io.InputStream.close:()V
        43: .line 144
            goto 47
      StackMap locals:
      StackMap stack: java.io.InterruptedIOException
        44: pop
        45: .line 145
            iconst_1
            istore 3 /* isInterrupted */
            goto 47
        46: .line 146
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
        47: .line 148
      StackMap locals:
      StackMap stack:
            iload 3 /* isInterrupted */
            ifeq 49
        48: .line 149
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        49: .line 152
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            areturn
        end local 4 // int len
        end local 3 // boolean isInterrupted
        end local 2 // java.io.InputStream in
        end local 1 // byte[] b
        end local 0 // sun.misc.Resource this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   50     0           this  Lsun/misc/Resource;
            9   33     1              b  [B
           42   50     1              b  [B
            1   50     2             in  Ljava/io/InputStream;
            2   50     3  isInterrupted  Z
            3    4     4            len  I
            8   50     4            len  I
           11   32     5            pos  I
           14   17     6    bytesToRead  I
           18   31     6    bytesToRead  I
           19   31     7             cc  I
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.InterruptedIOException
          19    20      21  Class java.io.InterruptedIOException
           8    33      33  any
          34    35      36  Class java.io.InterruptedIOException
          34    35      38  Class java.io.IOException
          42    43      44  Class java.io.InterruptedIOException
          42    43      46  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  public java.nio.ByteBuffer getByteBuffer();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // sun.misc.Resource this
         0: .line 160
            aload 0 /* this */
            invokevirtual sun.misc.Resource.cachedInputStream:()Ljava/io/InputStream;
            astore 1 /* in */
        start local 1 // java.io.InputStream in
         1: .line 161
            aload 1 /* in */
            instanceof sun.nio.ByteBuffered
            ifeq 3
         2: .line 162
            aload 1 /* in */
            checkcast sun.nio.ByteBuffered
            invokeinterface sun.nio.ByteBuffered.getByteBuffer:()Ljava/nio/ByteBuffer;
            areturn
         3: .line 164
      StackMap locals: java.io.InputStream
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.io.InputStream in
        end local 0 // sun.misc.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/misc/Resource;
            1    4     1    in  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException

  public java.util.jar.Manifest getManifest();
    descriptor: ()Ljava/util/jar/Manifest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.Resource this
         0: .line 171
            aconst_null
            areturn
        end local 0 // sun.misc.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/Resource;
    Exceptions:
      throws java.io.IOException

  public java.security.cert.Certificate[] getCertificates();
    descriptor: ()[Ljava/security/cert/Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.Resource this
         0: .line 178
            aconst_null
            areturn
        end local 0 // sun.misc.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/Resource;

  public java.security.CodeSigner[] getCodeSigners();
    descriptor: ()[Ljava/security/CodeSigner;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.Resource this
         0: .line 185
            aconst_null
            areturn
        end local 0 // sun.misc.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/Resource;
}
SourceFile: "Resource.java"