在我的应用程序中,我需要用户访问Dropbox,查看文件(所有文件夹),能够下载和上传文件,如图片和小型音频文件。我已经尝试过DBRoulette来理解这个概念。得到它也工作。身份验证也没关系。但我不知道如何执行下载/上传/查看所有文件等任务。
我读到了关于“选择器”和“保护程序”的信息,但我想我应该使用“核心Api”。请指导我。
让我再次感动的任何帮助都将受到赞赏。
感谢
答案 0 :(得分:0)
我现在正在使用Dropbox。我没有必要查看目录,但我正在访问多个区域的文件。如果您的核心Dropbox已经运行,那么您可以写入任何文件夹,如果没有,则会创建。
// located in your dropboxHelper class
public void writeToDropbox(File src) {
String directory1 = "/TopFolder/";
// Or for a sub folder
String orThisDirectory = "/TopFolder/SubFolder/";
myAsyncTask backup = new myAsyncTask(ctx, mDBApi, directory1, src);
backup.execute();
}
文件名将与您发送的文件相同。如果您需要Asynctask代码,我也可以包含它。请告诉我。 要拉一个文件,我使用这个基本代码。
public void restore(String fileGet, File fileSave, String sPath,
String mFolder) {
File file = new File(fileGet);
try {
FileOutputStream outputStream = new FileOutputStream(fileSave);
otherAsyncTask restore = new otherAsyncTask (ctx, mDBApi,outputStream,
file, sPath, mFolder);
restore.execute();
}
这将涵盖上传和下载。我只使用Core API。如果您还需要AsyncTask代码,请问。我想你可能有那个部分。
UPDATE 获取DropboxHelper的实例。把它放在你要发送信息的班级里。
// Dropbox setup
if (dropbox_option) {
mDropbox = new DropboxHelper(ctx);
if (!mDropbox.isLinked()) {
mDropbox.completeAuthenticationDropbox();
}
}
在Dropbox助手类中,我有所有连接代码和读写方法。
public static DropboxHelper getInstance(Context context) {
if (mHelper == null) {
mHelper = new DropboxHelper(context);
}
return mHelper;
}
public static DropboxHelper getInstance() throws Exception {
if (mHelper == null)
throw new Exception("DropboxHelper not yet instantiated");
return mHelper;
}
public DropboxHelper(Context context) {
super();
ctx = context;
// create session
AndroidAuthSession session = buildSession();
mDBApi = new DropboxAPI<AndroidAuthSession>(session);
if (isLinked()) {
AccessKeys = getKeys();
AccessTokenPair access = new AccessTokenPair(AccessKeys[0],
AccessKeys[1]);
mDBApi.getSession().setAccessTokenPair(access);
} else {
mDBApi.getSession().startAuthentication(ctx);
}
}
private String[] getKeys() {
prefs = PreferenceManager.getDefaultSharedPreferences(ctx);
String key = prefs.getString(Global.DROPBOX_ACCESS_KEY_NAME, null);
String secret = prefs
.getString(Global.DROPBOX_ACCESS_SECRET_NAME, null);
if (key != null && secret != null) {
String[] ret = new String[2];
ret[0] = key;
ret[1] = secret;
return ret;
} else {
return null;
}
}
// Clear token
public void clearKeysToken() {
prefs = PreferenceManager.getDefaultSharedPreferences(ctx);
Editor edit = prefs.edit();
edit.clear();
edit.commit();
}
protected void storeKeys(String key, String secret) {
// prefs = this.getSharedPreferences(ACCOUNT_PREFS_NAME, 0);
prefs = PreferenceManager.getDefaultSharedPreferences(ctx);
Editor edit = prefs.edit();
edit.putString(Global.DROPBOX_ACCESS_KEY_NAME, key);
edit.putString(Global.DROPBOX_ACCESS_SECRET_NAME, secret);
edit.commit();
}
// Create a session
private AndroidAuthSession buildSession() {
AppKeyPair appKeyPair = new AppKeyPair(Global.APP_KEY,
Global.APP_SECRET);
AndroidAuthSession session;
String[] stored = getKeys();
if (stored != null) {
AccessTokenPair accessToken = new AccessTokenPair(stored[0],
stored[1]);
session = new AndroidAuthSession(appKeyPair,
Global.DROPBOX_ACCESS_TYPE, accessToken);
} else {
session = new AndroidAuthSession(appKeyPair,
Global.DROPBOX_ACCESS_TYPE);
}
return session;
}
// Complete authentication
public void completeAuthenticationDropbox() {
session = mDBApi.getSession();
// The next part must be inserted in the onResume() method of the
// activity from which session.startAuthentication() was called, so
// that Dropbox authentication completes properly.
if (session.authenticationSuccessful()) {
try {
// complete authentication
session.finishAuthentication();
// save login credentials
TokenPair tokens = session.getAccessTokenPair();
storeKeys(tokens.key, tokens.secret);
// setLoggedIn(true);
} catch (IllegalStateException e) {
Toast.makeText(ctx,
"Couldn't authenticate with Dropbox:" + e.getMessage(),
Toast.LENGTH_LONG).show();
Log.i(TAG, "Error authenticating", e);
} finally {
if (isLinked()) {
Log.d(TAG, "dropbox is linked");
} else {
Log.d(TAG, "Dropbox is NOT linked.");
}
}
} else {
Log.d(TAG, "WTF");
}
}
// Returns true if you are connected to Dropbox
public boolean isLinked() {
return mDBApi.getSession().isLinked();
}
public void logIn() {
Log.i(TAG, "Login");
mDBApi.getSession().startAuthentication(ctx);
}
了解如何通过筛选this code来实现这一目标。