永久存储价值?

时间:2013-10-23 10:16:15

标签: java android dropbox dropbox-api

I have an app, In this signIn through the dropbox and after the signIn I got the vale of below I declared:

DropboxAPI<AndroidAuthSession> mDBApi;

我想要的是:

我希望在手机重启后使用此值(获取此值)。

Or

我想存储此永久值。

For better understand have a look on this Link : DROPBOX_REFERENCE_LINK

对于我尝试的这个:

  1. 我做了静电但它工作正常,直到Phone开启。不代表!

  2. 使用SharedPrefrence但I have to put this value into the String但在typeCast时,我无法将此String值转换为DropboxAPI Generic Type。

  3. LIKE:

    String s = mDBApi_From_Prefrence;
    DropboxAPI<AndroidAuthSession> mDBApi = `TypeCast From String s to DropboxAPI<AndroidAuthSession>`
    

    我该怎么做才能存储此mBDApi值PERMANENT

1 个答案:

答案 0 :(得分:0)

您可以将此值作为BLOB类型存储到SQLite数据库,然后再次获取它。即使在重新启动后,数据库仍然对应用程序保持持久性。