Here is code
try {
//Download file for DropBox 2
DbxDownloader<FileMetadata> downloadData = dbxClientV2.files().download(dBoxPath);
ouputStream = new FileOutputStream(localFile);
downloadData.download(ouputStream);
//Download file for DropBox 1
/* DropboxAPI.DropboxInputStream fd = dropboxAPI.getFileStream(dBoxPath, null);
ouputStream = new FileOutputStream(localFile);
fd.copyStreamToOutput(ouputStream, null);*/
}/* catch (DropboxException err) {
Log.e(LOG_TAG, "DropboxAPI throws this exception : " + err.getMessage());
success = false;
}*/ catch (Exception err) {
Log.e(LOG_TAG, "Exception thrown for file at " + dBoxPath + " err msg :" + err.getMessage());
success = false;
} finally {
if (ouputStream != null) {
ouputStream.close();
}
}