Class FileResource
- java.lang.Object
-
- org.apache.http.impl.client.cache.FileResource
-
- All Implemented Interfaces:
Serializable
,Resource
@Contract(threading=SAFE) public class FileResource extends Object implements Resource
Cache resource backed by a file.- Since:
- 4.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileResource(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.InputStream
getInputStream()
Returns anInputStream
from which the response body can be read.long
length()
Returns the length in bytes of the response body.
-
-
-
Constructor Detail
-
FileResource
public FileResource(File file)
-
-
Method Detail
-
getInputStream
public InputStream getInputStream() throws IOException
Description copied from interface:Resource
Returns anInputStream
from which the response body can be read.- Specified by:
getInputStream
in interfaceResource
- Throws:
IOException
-
length
public long length()
Description copied from interface:Resource
Returns the length in bytes of the response body.
-
-