Class FileResource

    • Constructor Summary

      Constructors 
      Constructor Description
      FileResource​(java.io.File file)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void dispose()
      Indicates the system no longer needs to keep this response body and any system resources associated with it may be reclaimed.
      java.io.InputStream getInputStream()
      Returns an InputStream from which the response body can be read.
      long length()
      Returns the length in bytes of the response body.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FileResource

        public FileResource​(java.io.File file)
    • Method Detail

      • getInputStream

        public java.io.InputStream getInputStream()
                                           throws java.io.IOException
        Description copied from interface: Resource
        Returns an InputStream from which the response body can be read.
        Specified by:
        getInputStream in interface Resource
        Throws:
        java.io.IOException
      • length

        public long length()
        Description copied from interface: Resource
        Returns the length in bytes of the response body.
        Specified by:
        length in interface Resource
      • dispose

        public void dispose()
        Description copied from interface: Resource
        Indicates the system no longer needs to keep this response body and any system resources associated with it may be reclaimed.
        Specified by:
        dispose in interface Resource