Most visited

Recently visited

Added in API level 1

ParcelFileDescriptor.AutoCloseOutputStream

public static class ParcelFileDescriptor.AutoCloseOutputStream
extends FileOutputStream

java.lang.Object
   ↳ java.io.OutputStream
     ↳ java.io.FileOutputStream
       ↳ android.os.ParcelFileDescriptor.AutoCloseOutputStream
Known Direct Subclasses


An OutputStream 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.AutoCloseOutputStream(ParcelFileDescriptor pfd)

Public methods

void close()

Closes this file output stream and releases any system resources associated with this stream.

Inherited methods

From class java.io.FileOutputStream
From class java.io.OutputStream
From class java.lang.Object
From interface java.io.Closeable
From interface java.io.Flushable
From interface java.lang.AutoCloseable

Public constructors

ParcelFileDescriptor.AutoCloseOutputStream

Added in API level 1
ParcelFileDescriptor.AutoCloseOutputStream (ParcelFileDescriptor pfd)

Parameters
pfd ParcelFileDescriptor

Public methods

close

Added in API level 1
void close ()

Closes this file output stream and releases any system resources associated with this stream. This file output stream may no longer be used for writing bytes.

If this stream has an associated channel then the channel is closed as well.

Throws
IOException

Hooray!