0

我已经构建了一个用于管理事务的应用程序,并且我目前正在添加保管箱备份。我通过将数据库文件上传到保管箱(似乎正确显示)来做到这一点。然后我想再次下载文件并覆盖现有数据库。当我这样做时,数据库将保存为文件 ei。由 context.fileList() 列出;而不是 context.databaseList(); 我如何处理数据库文件以将它们放在正确的位置?

这是我认为相关的代码:

private static class Downloader extends AsyncTask<Integer, Integer, Boolean>{
    Context context;
    @Override
    protected void onPreExecute(){
        context = SpendoBase.getContext();
    }
    @Override
    protected Boolean doInBackground(Integer... arg0) {
        System.out.println("DoInBackground:");
        try {
            List<DropboxAPI.Entry> entries = mDBApi.metadata("/", -1, null, true, null).contents;
            File file;
            FileOutputStream os;
            int count = 0;
            for(DropboxAPI.Entry entry: entries){
                count++;
                System.out.println("Entry.path(): " + entry.path  + " " + count + "/" + entries.size());
                file = new File(entry.path);
                System.out.println("1");
                os = context.openFileOutput(file.getName(), Context.MODE_PRIVATE);
                System.out.println("2");
                DropboxFileInfo info = mDBApi.getFile(entry.path, null, os, null);
                os.flush();
                os.close();
                System.out.println("3 " + info);
            }

        } catch (DropboxException e) {
            e.printStackTrace();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return null;
    }
}

private static class Uploader extends AsyncTask<Integer, Integer, Boolean>{
    String[] databaseList;
    Context context;
    @Override
    protected void onPreExecute(){
        context = SpendoBase.getContext();
        databaseList = context.databaseList();
    }
    @Override
    protected Boolean doInBackground(Integer... params) {
        for(String dbName: databaseList){
            try {
                File f = context.getDatabasePath(dbName);
                FileInputStream  fis = new FileInputStream(f.getPath());
                mDBApi.putFileOverwrite("/" + dbName, fis, f.length(), null);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (DropboxException e) {
                e.printStackTrace();
            }
        }
        return null;
    }

} 
private static class MetaReader extends AsyncTask<Integer, Integer, List<String>>{

    @Override
    protected List<String> doInBackground(Integer... arg0) {
        try {

            List<String> result = new Vector<String>();
            DropboxAPI.Entry existingEntry = mDBApi.metadata("/", -1, null, true, null);
            List<DropboxAPI.Entry> temp = existingEntry.contents;
            for(int i = 0; i < temp.size(); i++){
                File f = new File(temp.get(i).path);
                result.add(f.getName());
            }
            return result;
         } catch (DropboxException e) {
             System.out.println("Something went wrong: " + e);
         }
        return null;
    }
    @Override
    protected void onPostExecute(List<String> result){
        for(String str:result){
            System.out.println(str);
        }
    }
}
4

3 回答 3

0

我设法解决了它。我的错误只是我将数据库保存在错误的位置。

改变:

 file = new File(entry.path);
            System.out.println("1");
            os = context.openFileOutput(file.getName(), Context.MODE_PRIVATE);

至:

  file = new File("/data/data/com.SverkerSbrg.SpendoFull/databases/" + entry.path);
                System.out.println("1");
                os = new FileOutputStream(file.getPath());

解决了问题

于 2013-10-17T11:11:20.523 回答
0

您需要 root 目标手机才能将文件保存在 /data/data/com.SverkerSbrg.SpendoFull/databases/ 这个位置。

于 2014-04-18T12:04:30.123 回答
0

我没有做太多的 Android 开发,所以我可能会在这里偏离基础,但为什么你不能context.getDatabasePath(dbName)再次使用Downloader并将文件写入该路径?

于 2013-10-16T20:15:13.413 回答