我正在使用CloudRail将文件从dropbox上传/下载到我的Android设备。我不知道如何实施download或post方法。在创建一个简单的files.txt进行上传时,我迷失了文件路径目录。
我想要做的是将一个简单的String变量写入/读取到file.txt并将其上传到dropbox。在设备的外部存储器中创建文件然后上传它们也是一种选择。
我还在GitHub上对CloudRail示例进行了一些研究,但是有很多关于可视化界面的代码,我不需要这些代码,这让我很难找到解决方案。我还发现了一些与我的需求相关的create_subprocess_exec,但我无法重现它。此外,我在CloudRail论坛上发布了没有回复。
提前感谢您的时间
private void uploadItem(final String name, final Uri uri) {
startSpinner();
new Thread(new Runnable() {
@Override
public void run() {
InputStream fs = null;
long size = -1;
try {
fs = getOwnActivity().getContentResolver().openInputStream(uri);
size = getOwnActivity().getContentResolver().openAssetFileDescriptor(uri, "r").getLength();
} catch (Exception e) {
stopSpinner();
getOwnActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(context, "Unable to access file!", Toast.LENGTH_SHORT).show();
}
});
return;
}
String next = currentPath;
if(!currentPath.equals("/")) {
next += "/";
}
next += name;
getService().upload(next, fs, size, true);
getOwnActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
updateList();
}
});
}
}).start();
}
答案 0 :(得分:1)
使用CloudRail SDK的上传功能总共使用4个参数,如documentation中所述:
/**
* @param path The destination path for the new file
* @param stream The file content that will be uploaded
* @param size The file size measured in bytes
* @param overwrite Indicates if the file should be overwritten. Throws an error if set to false and the specified file already exists
* @throws IllegalArgumentException Null or malformatted path, null stream or negative file size
*/
void upload(
String path,
InputStream stream,
Long size,
Boolean overwrite
);
如上所示, stream参数应指向应上传的源字节,在您的情况下,stream参数当前为 NULL 。只要在流参数中发送结果字节,流来自哪里(SD卡,磁盘,内存等)并不重要。您的代码的可能解决方案是:(假设创建的文件存在并且已成功加载)
File temp = new File(context.getFilesDir(), String.valueOf(System.nanoTime()));
InputStream stream = new FileInputStream(temp);;
long size = temp.length();
dropbox.upload("/TestFolder",stream,size,true);