Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static class

ParcelFileDescriptor.AutoCloseInputStream

extends FileInputStream
java.lang.Object
   ↳ java.io.InputStream
     ↳ java.io.FileInputStream
       ↳ android.os.ParcelFileDescriptor.AutoCloseInputStream
Known Direct Subclasses

Class Overview

An InputStream you can create on a ParcelFileDescriptor, which will take care of calling ParcelFileDescriptor.close() for you when the stream is closed.

Summary

Public Constructors
ParcelFileDescriptor.AutoCloseInputStream ( ParcelFileDescriptor pfd)
Public Methods
void close ()
Closes this stream.
[Expand]
Inherited Methods
From class java.io.FileInputStream
From class java.io.InputStream
From class java.lang.Object
From interface java.io.Closeable
From interface java.lang.AutoCloseable

Public Constructors

public ParcelFileDescriptor.AutoCloseInputStream ( ParcelFileDescriptor pfd)

Added in API level 1

Public Methods

public void close ()

Added in API level 1

Closes this stream. Concrete implementations of this class should free any resources during close. This implementation does nothing.