使用Dropbox Sync API同步数据

时间:2013-07-26 08:59:17

标签: android dropbox dropbox-api

我试图通过Dropbox SYNC API在android中实现Icloud功能(在不同设备中同时下沉)。我能够读取和写入Dropbox文件。但是我的问题是,即使我已经实现了DbxFile.Listener,我也无法收听Dropbox中文件的更改。我在这里发布我的示例代码。通过这个示例代码,我的目标是如果我在Dropbox中修改了一个文件,它也应该反映在应用程序中。此外,在两个设备中运行此应用程序时,Dropbox文件夹中发生文件冲突。谁能告诉我哪里出错?在这方面的任何帮助都非常值得赞赏。

public class SecondActivity extends Activity implements OnClickListener {

private DbxAccountManager mDbxAcctMgr;

private static final String APP_KEY = "xxxxxxxxx";
private static final String APP_SECRET = "xxxxxxxxxx";
DbxFile testFile;
DbxFileSystem dbxFs;
DbxPath testPath;
Button btn;
EditText edit;
String contents;

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    btn = (Button) findViewById(R.id.button1);
    edit = (EditText) findViewById(R.id.editText1);
    btn.setOnClickListener(this);
    mDbxAcctMgr = DbxAccountManager.getInstance(getApplicationContext(),
            APP_KEY, APP_SECRET);
    testPath = new DbxPath(DbxPath.ROOT, "mytext.txt");
    if (!mDbxAcctMgr.hasLinkedAccount()) {
        mDbxAcctMgr.startLink((Activity) this, 0);
    } else {
        try {
            dbxFs = DbxFileSystem
                    .forAccount(mDbxAcctMgr.getLinkedAccount());
            readFile(dbxFs);
        } catch (Unauthorized e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    if (requestCode == 0) {
        if (resultCode == Activity.RESULT_OK) {
            try {
                dbxFs = DbxFileSystem.forAccount(mDbxAcctMgr
                        .getLinkedAccount());
                readFile(dbxFs);
            } catch (Unauthorized e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        } else {

        }
    } else {
        super.onActivityResult(requestCode, resultCode, data);
    }
}

private void readFile(DbxFileSystem dbxFs2) {

    try {
        try {
            if (dbxFs2.exists(testPath)) {

                testFile = dbxFs.open(testPath);
                testFile.addListener(listener);
                String contenString = testFile.readString().toString();
                showtoast(contenString);

            } else {
                testFile = dbxFs.create(testPath);
            }
        } catch (DbxException e) {

            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        }

    } finally {
        testFile.close();
    }

}

private void showtoast(String msg) {

    Toast.makeText(this, msg, Toast.LENGTH_LONG).show();

}

@Override
public void onClick(View v) {
    contents = edit.getText().toString();
    if (!TextUtils.isEmpty(contents)) {
        try {
            if (dbxFs.exists(testPath)) {
                new syncDropBox().execute();
            } else {
                dbxFs.create(testPath);
            }
        } catch (DbxException e) {

            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        } finally {
            testFile.close();
        }
    }

}

private class syncDropBox extends AsyncTask<Void, Void, Boolean> {
    boolean result = false;

    @Override
    protected Boolean doInBackground(Void... paramArrayOfParams) {
        try {
            dbxFs.syncNowAndWait();
            result = true;
        } catch (DbxException e) {
            result = false;
            e.printStackTrace();
        }
        return result;
    }

    @Override
    protected void onPostExecute(Boolean result) {

        if (result) {
            showtoast("sync succeed");
            try {
                testFile = dbxFs.open(testPath);
            } catch (DbxException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            try {
                testFile.writeString(contents);
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        } else {
            showtoast("sync failed");
        }
        super.onPostExecute(result);
    }

}

DbxFile.Listener listener = new Listener() {

    @Override
    public void onFileChange(DbxFile paramDbxFile) {
        showtoast("file contents modified");

    }
};

}

1 个答案:

答案 0 :(得分:0)

看起来你正在添加一个监听器,但随后立即关闭该文件。只有在打开该文件时才会触发单个文件上的侦听器。

您应该保持文件处于打开状态,并使用DbxFile.Listener来监视文件更改并更新UI。为此,您需要查看DbxFile.getNewerStatus()。像这样:

@Override
public void on FileChange(DbxFile paramDbxFile) {
    if (paramDbxFile.getNewerStatus().isCached) {
        paramDbxFile.update();
        readFile(dbxFs);
    }
}

当然,这意味着如果用户正在编辑文本,然后在其他地方更改文本,则用户的编辑将会丢失(因为readFile更新了EditText })。您可能希望告诉用户新内容可用,并让他们决定是否提取新内容或在保存时用自己的内容覆盖。