public abstract static class DbxClientV1.Uploader
extends java.lang.Object
getBody()
stream.
Don't call close()
directly on the getBody()
. Instead call either
call either finish()
or close()
to make sure the stream and other
resources are released. A safe idiom is to use the object within a try
block and put a call to close()
in the finally
block.
DbxClientV1.Uploader uploader = ... try { uploader.body.write("Hello, world!".getBytes("UTF-8")); uploader.finish(); } finally { uploader.close(); }
Constructor and Description |
---|
Uploader() |
Modifier and Type | Method and Description |
---|---|
abstract void |
abort()
Cancel the upload.
|
abstract void |
close()
Release the resources related to this
Uploader instance. |
abstract DbxEntry.File |
finish()
When you're done writing the file contents to
getBody() , call this
to indicate that you're done. |
abstract java.io.OutputStream |
getBody() |
public abstract java.io.OutputStream getBody()
public abstract void abort()
public abstract void close()
public abstract DbxEntry.File finish() throws DbxException
getBody()
, call this
to indicate that you're done. This will actually finish the underlying HTTP
request and return the uploaded file's DbxEntry
.DbxException