こんにちは、ドロップボックスをサポートするアプリを開発しています。
認証を完了し、すべてが正常に機能しています。
インターネット接続をオフにしてファイルをアップロードしようとすると、成功のコールバックが返されます...!!!
その後、インターネットをオンにしても何も起こりません。
これは物事が起こらなければならない方法ですか、それとも私はどこか間違っていますか??
アップロードに使用するコードは次のとおりです
FileInputStream inputStream = null;
try {
File file = new File("/path to my file.txt");
inputStream = new FileInputStream(file);
Entry newEntry = mDBApi.putFileOverwrite("/path to my file.txt", inputStream, file.length(), null);
Log.i("DbExampleLog", "The uploaded file's rev is: " + newEntry.rev);
} catch (DropboxUnlinkedException e) {
// User has unlinked, ask them to link again here.
Log.e("DbExampleLog", "User has unlinked.");
} catch (DropboxException e) {
Log.e("DbExampleLog", "Something went wrong while uploading.");
} catch (FileNotFoundException e) {
Log.e("DbExampleLog", "File not found.");
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {}
}
}