web-dev-qa-db-ja.com

共有設定でクラスオブジェクトを保存および取得する

Androidでは、クラスのオブジェクトを共有設定に保存し、後でオブジェクトを取得できますか?

それが可能な場合はどうすればいいですか?それが不可能な場合、それを行う他の可能性は何ですか?

シリアル化が1つのオプションであることは知っていますが、共有設定を使用する可能性を探しています。

107
androidGuy

ありえない。

SharedPreferencesには単純な値のみを保存できます SharedPreferences.Editor

クラスについて特に保存する必要があるものは何ですか?

14
Blundell

はい Gson を使用してこれを行うことができます

GitHub から作業コードをダウンロードします

SharedPreferences mPrefs = getPreferences(MODE_PRIVATE);

保存用

Editor prefsEditor = mPrefs.edit();
Gson gson = new Gson();
String json = gson.toJson(myObject); // myObject - instance of MyObject
prefsEditor.putString("MyObject", json);
prefsEditor.commit();

忘れる

Gson gson = new Gson();
String json = mPrefs.getString("MyObject", "");
MyObject obj = gson.fromJson(json, MyObject.class);

Update1

GSONの最新バージョンは github.com/google/gson からダウンロードできます。

Update2

Gradle/Android Studioを使用している場合は、build.gradle依存関係セクションに以下を入力するだけです-

implementation 'com.google.code.gson:gson:2.6.2'
318
Parag Chauhan

outputstreamを使用して、オブジェクトを内部メモリに出力できます。そして、文字列に変換してから設定に保存します。例えば:

    mPrefs = getPreferences(MODE_PRIVATE);
    SharedPreferences.Editor ed = mPrefs.edit();
    ByteArrayOutputStream arrayOutputStream = new ByteArrayOutputStream();

    ObjectOutputStream objectOutput;
    try {
        objectOutput = new ObjectOutputStream(arrayOutputStream);
        objectOutput.writeObject(object);
        byte[] data = arrayOutputStream.toByteArray();
        objectOutput.close();
        arrayOutputStream.close();

        ByteArrayOutputStream out = new ByteArrayOutputStream();
        Base64OutputStream b64 = new Base64OutputStream(out, Base64.DEFAULT);
        b64.write(data);
        b64.close();
        out.close();

        ed.putString(key, new String(out.toByteArray()));

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

preferenceからObjectを抽出する必要がある場合。以下のコードを使用します

    byte[] bytes = mPrefs.getString(indexName, "{}").getBytes();
    if (bytes.length == 0) {
        return null;
    }
    ByteArrayInputStream byteArray = new ByteArrayInputStream(bytes);
    Base64InputStream base64InputStream = new Base64InputStream(byteArray, Base64.DEFAULT);
    ObjectInputStream in;
    in = new ObjectInputStream(base64InputStream);
    MyObject myObject = (MyObject) in.readObject();
44
Kislingk

私は同じ問題を抱えていました、ここに私の解決策があります:

共有設定に保存したいクラスMyClassとArrayList <MyClass>があります。最初に、JSONオブジェクトに変換するメソッドをMyClassに追加しました。

public JSONObject getJSONObject() {
    JSONObject obj = new JSONObject();
    try {
        obj.put("id", this.id);
        obj.put("name", this.name);
    } catch (JSONException e) {
        e.printStackTrace();
    }
    return obj;
}

次に、オブジェクト「ArrayList <MyClass> items」を保存するメソッドを示します。

SharedPreferences mPrefs = context.getSharedPreferences("some_name", 0);
    SharedPreferences.Editor editor = mPrefs.edit();

    Set<String> set= new HashSet<String>();
    for (int i = 0; i < items.size(); i++) {
        set.add(items.get(i).getJSONObject().toString());
    }

    editor.putStringSet("some_name", set);
    editor.commit();

そして、オブジェクトを取得する方法は次のとおりです。

public static ArrayList<MyClass> loadFromStorage() {
    SharedPreferences mPrefs = context.getSharedPreferences("some_name", 0);

    ArrayList<MyClass> items = new ArrayList<MyClass>();

    Set<String> set = mPrefs.getStringSet("some_name", null);
    if (set != null) {
        for (String s : set) {
            try {
                JSONObject jsonObject = new JSONObject(s);
                Long id = jsonObject.getLong("id"));
                String name = jsonObject.getString("name");
                MyClass myclass = new MyClass(id, name);

                items.add(myclass);

            } catch (JSONException e) {
                e.printStackTrace();
         }
    }
    return items;
}

API 11以降、共有設定のStringSetを使用できることに注意してください。

8
Micer

Gson Libraryを使用:

dependencies {
compile 'com.google.code.gson:gson:2.8.2'
}

ストア:

Gson gson = new Gson();
//Your json response object value store in json object
JSONObject jsonObject = response.getJSONObject();
//Convert json object to string
String json = gson.toJson(jsonObject);
//Store in the sharedpreference
getPrefs().setUserJson(json);

取得:

String json = getPrefs().getUserJson();
7
Ramesh sambu

PowerPreferenceライブラリを使用して、3つの簡単な手順で実行できます。

https://github.com/AliAsadi/PowerPreference

1.オブジェクトを作成する

Object obj = new Object();

2.共有設定への書き込み

PowerPreference.getDefaultFile().put("object",obj);

3.オブジェクトの取得

Object obj = PowerPreference.getDefaultFile()
                            .getObject("object", Object.class);
1
Ali Asadi

Gradle Build.gradleを使用してGSONを使用できます。

implementation 'com.google.code.gson:gson:2.8.0'

次に、コード内で、たとえば文字列/ブール値とKotlinのペア:

        val nestedData = HashMap<String,Boolean>()
        for (i in 0..29) {
            nestedData.put(i.toString(), true)
        }
        val gson = Gson()
        val jsonFromMap = gson.toJson(nestedData)

SharedPrefsへの追加:

        val sharedPrefEditor = context.getSharedPreferences(_prefName, Context.MODE_PRIVATE).edit()
        sharedPrefEditor.putString("sig_types", jsonFromMap)
        sharedPrefEditor.apply()

データを取得するには:

val gson = Gson()
val sharedPref: SharedPreferences = context.getSharedPreferences(_prefName, Context.MODE_PRIVATE)
val json = sharedPref.getString("sig_types", "false")
val type = object : TypeToken<Map<String, Boolean>>() {}.type
val map = gson.fromJson(json, type) as LinkedTreeMap<String,Boolean>
for (key in map.keys) {
     Log.i("myvalues", key.toString() + map.get(key).toString())
}
1
CAZ

Complex Preferences Android-by Felipe Silvestre ライブラリを使用して、カスタムオブジェクトを保存できます。基本的に、GSONメカニズムを使用してオブジェクトを格納しています。

オブジェクトを設定に保存するには:

User user = new User();
user.setName("Felipe");
user.setAge(22); 
user.setActive(true); 

ComplexPreferences complexPreferences = ComplexPreferences.getComplexPreferences(
     this, "mypref", MODE_PRIVATE);
complexPreferences.putObject("user", user);
complexPreferences.commit();

そしてそれを取り戻すには:

ComplexPreferences complexPreferences = ComplexPreferences.getComplexPreferences(this, "mypref", MODE_PRIVATE);
User user = complexPreferences.getObject("user", User.class);
0
Serhii Hrabas

このオブジェクトの使用-> TinyDB--Android-Shared-Preferences-Turbo は非常にシンプルです。配列、整数、文字列リストなど、一般的に使用されるほとんどのオブジェクトを保存できます

0
kc ochibili

アプリケーションがdonwをシャットダウンした後、または実行中にのみオブジェクトを取得する必要がありますか?

データベースに保存できます。
または単にカスタムアプリケーションクラスを作成します。

public class MyApplication extends Application {

    private static Object mMyObject;
    // static getter & setter
    ...
}

<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android">
    <application ... Android:name=".MyApplication">
        <activity ... />
        ...
    </application>
    ...
</manifest>

そして、すべての活動から:

((MyApplication) getApplication).getMyObject();

本当に最善の方法ではありませんが、機能します。

0
luc.chante