ドロップボックスをアプリに正常に統合し、ファイルをアップロードおよびダウンロードできますが、sqlite データベース ファイルをアップロードしてダウンロードすると、ファイルにデータが含まれません。
アップロード方法は次のとおりです。
public void upload() {
FileInputStream inputStream = null;
try {
File file = new File(Environment.getExternalStorageDirectory()
.toString() + "/tripmileagedatabase");
inputStream = new FileInputStream(file);
Entry newEntry = mDBApi.putFile("/tripmileagedatabase", inputStream,
file.length(), null, 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) {
}
}
}
}
私のダウンロード方法は次のとおりです。
public void download() {
FileOutputStream outputStream = null;
try {
File file = new File(Environment.getExternalStorageDirectory()
.toString() + "/tripmileagedatabase");
outputStream = new FileOutputStream(file);
DropboxFileInfo info = mDBApi.getFile("/tripmileagedatabase", null,
outputStream, null);
Log.i("DbExampleLog", "The file's rev is: "
+ info.getMetadata().rev);
// /path/to/new/file.txt now has stuff in it.
} catch (DropboxException e) {
Log.e("DbExampleLog", "Something went wrong while downloading.");
} catch (FileNotFoundException e) {
Log.e("DbExampleLog", "File not found.");
} finally {
if (outputStream != null) {
try {
outputStream.close();
} catch (IOException e) {
}
}
}
}
しかし、アプリでこのデータベースを取得すると、そのデータベースにデータが表示されません。どうすればよいですか?