public abstract class org.springframework.core.io.AbstractResource implements org.springframework.core.io.Resource
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.core.io.AbstractResource
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;

  public boolean exists();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 55
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getFile:()Ljava/io/File;
            invokevirtual java.io.File.exists:()Z
         1: ireturn
         2: .line 57
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         3: .line 60
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getInputStream:()Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         4: .line 61
            iconst_1
            ireturn
         5: .line 63
      StackMap locals:
      StackMap stack: java.lang.Throwable
            pop
         6: .line 64
            iconst_0
            ireturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/springframework/core/io/AbstractResource;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
           3     4       5  Class java.lang.Throwable

  public boolean isReadable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 75
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.exists:()Z
            ireturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;

  public boolean isOpen();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 83
            iconst_0
            ireturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;

  public boolean isFile();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 91
            iconst_0
            ireturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;

  public java.net.URL getURL();
    descriptor: ()Ljava/net/URL;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 100
            new java.io.FileNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getDescription:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " cannot be resolved to URL"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;
    Exceptions:
      throws java.io.IOException

  public java.net.URI getURI();
    descriptor: ()Ljava/net/URI;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 109
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 111
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.toURI:(Ljava/net/URL;)Ljava/net/URI;
         2: areturn
         3: .line 113
      StackMap locals: org.springframework.core.io.AbstractResource java.net.URL
      StackMap stack: java.net.URISyntaxException
            astore 2 /* ex */
        start local 2 // java.net.URISyntaxException ex
         4: .line 114
            new org.springframework.core.NestedIOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid URI ["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* url */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* ex */
            invokespecial org.springframework.core.NestedIOException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.net.URISyntaxException ex
        end local 1 // java.net.URL url
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/springframework/core/io/AbstractResource;
            1    5     1   url  Ljava/net/URL;
            4    5     2    ex  Ljava/net/URISyntaxException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.net.URISyntaxException
    Exceptions:
      throws java.io.IOException

  public java.io.File getFile();
    descriptor: ()Ljava/io/File;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 124
            new java.io.FileNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getDescription:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " cannot be resolved to absolute file path"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.ReadableByteChannel readableChannel();
    descriptor: ()Ljava/nio/channels/ReadableByteChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 135
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getInputStream:()Ljava/io/InputStream;
            invokestatic java.nio.channels.Channels.newChannel:(Ljava/io/InputStream;)Ljava/nio/channels/ReadableByteChannel;
            areturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;
    Exceptions:
      throws java.io.IOException

  public long contentLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 146
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getInputStream:()Ljava/io/InputStream;
            astore 1 /* is */
        start local 1 // java.io.InputStream is
         1: .line 148
            lconst_0
            lstore 2 /* size */
        start local 2 // long size
         2: .line 149
            sipush 256
            newarray 8
            astore 4 /* buf */
        start local 4 // byte[] buf
         3: .line 151
            goto 5
        start local 5 // int read
         4: .line 152
      StackMap locals: org.springframework.core.io.AbstractResource java.io.InputStream long byte[] int
      StackMap stack:
            lload 2 /* size */
            iload 5 /* read */
            i2l
            ladd
            lstore 2 /* size */
        end local 5 // int read
         5: .line 151
      StackMap locals:
      StackMap stack:
            aload 1 /* is */
            aload 4 /* buf */
            invokevirtual java.io.InputStream.read:([B)I
            dup
            istore 5 /* read */
        start local 5 // int read
         6: iconst_m1
            if_icmpne 4
         7: .line 154
            lload 2 /* size */
            lstore 7
         8: .line 158
            aload 1 /* is */
            invokevirtual java.io.InputStream.close:()V
         9: .line 159
            goto 11
        10: .line 160
      StackMap locals: org.springframework.core.io.AbstractResource java.io.InputStream long byte[] int top long
      StackMap stack: java.io.IOException
            pop
        11: .line 154
      StackMap locals:
      StackMap stack:
            lload 7
            lreturn
        end local 5 // int read
        end local 4 // byte[] buf
        end local 2 // long size
        12: .line 156
      StackMap locals: org.springframework.core.io.AbstractResource java.io.InputStream
      StackMap stack: java.lang.Throwable
            astore 6
        13: .line 158
            aload 1 /* is */
            invokevirtual java.io.InputStream.close:()V
        14: .line 159
            goto 16
        15: .line 160
      StackMap locals: org.springframework.core.io.AbstractResource java.io.InputStream top top top top java.lang.Throwable
      StackMap stack: java.io.IOException
            pop
        16: .line 162
      StackMap locals:
      StackMap stack:
            aload 6
            athrow
        end local 1 // java.io.InputStream is
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lorg/springframework/core/io/AbstractResource;
            1   17     1    is  Ljava/io/InputStream;
            2   12     2  size  J
            3   12     4   buf  [B
            4    5     5  read  I
            6   12     5  read  I
      Exception table:
        from    to  target  type
           8     9      10  Class java.io.IOException
           1     8      12  any
          13    14      15  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  public long lastModified();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 172
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getFileForLastModifiedCheck:()Ljava/io/File;
            astore 1 /* fileToCheck */
        start local 1 // java.io.File fileToCheck
         1: .line 173
            aload 1 /* fileToCheck */
            invokevirtual java.io.File.lastModified:()J
            lstore 2 /* lastModified */
        start local 2 // long lastModified
         2: .line 174
            lload 2 /* lastModified */
            lconst_0
            lcmp
            ifne 6
            aload 1 /* fileToCheck */
            invokevirtual java.io.File.exists:()Z
            ifne 6
         3: .line 175
            new java.io.FileNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getDescription:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         4: .line 176
            ldc " cannot be resolved in the file system for checking its last-modified timestamp"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 175
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 178
      StackMap locals: java.io.File long
      StackMap stack:
            lload 2 /* lastModified */
            lreturn
        end local 2 // long lastModified
        end local 1 // java.io.File fileToCheck
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lorg/springframework/core/io/AbstractResource;
            1    7     1   fileToCheck  Ljava/io/File;
            2    7     2  lastModified  J
    Exceptions:
      throws java.io.IOException

  protected java.io.File getFileForLastModifiedCheck();
    descriptor: ()Ljava/io/File;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 190
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getFile:()Ljava/io/File;
            areturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;
    Exceptions:
      throws java.io.IOException

  public org.springframework.core.io.Resource createRelative(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/core/io/Resource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.springframework.core.io.AbstractResource this
        start local 1 // java.lang.String relativePath
         0: .line 199
            new java.io.FileNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot create a relative resource for "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getDescription:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String relativePath
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/springframework/core/io/AbstractResource;
            0    1     1  relativePath  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      relativePath  

  public java.lang.String getFilename();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 209
            aconst_null
            areturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.io.AbstractResource this
        start local 1 // java.lang.Object other
         0: .line 219
            aload 0 /* this */
            aload 1 /* other */
            if_acmpeq 3
            aload 1 /* other */
            instanceof org.springframework.core.io.Resource
            ifeq 2
         1: .line 220
            aload 1 /* other */
            checkcast org.springframework.core.io.Resource
            invokeinterface org.springframework.core.io.Resource.getDescription:()Ljava/lang/String;
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getDescription:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 3
         2: .line 219
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/springframework/core/io/AbstractResource;
            0    4     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 229
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getDescription:()Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            ireturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractResource this
         0: .line 238
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractResource.getDescription:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.core.io.AbstractResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractResource;
}
SourceFile: "AbstractResource.java"