我正在尝试从我的 android 应用程序将新的 .txt 文件上传到我的 Dropbox 文件夹。无论我做什么,它总是说文件或目录不存在。我在这里做错了什么?
当用户单击我视图中的按钮时,我想在我的 Dropbox 文件夹中创建一个新文件。Dropbox 文件夹的路径是 Dropbox\Apps\myApp 在 myApp 目录中,我想添加一个新的 txt 文件,例如文本“这是我的新文件”。在里面。
public void fileButtonClick(View v){
FileInputStream inputStream = null;
try {
File file = new File("/Apps/Finance+");
inputStream = new FileInputStream(file);
Entry newEntry = mDBApi.putFile("/file.txt", inputStream,
file.length(), null, null);
} catch (Exception e) {
System.out.println("Something went wrong: " + e);
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {}
}
}
}
谁能告诉我我做错了什么以及如何找到正确的路径/选项来制作新文件?
谢谢Yenthe