Code Monkey home page Code Monkey logo

preferencesdelegate's People

Contributors

timfreiheit avatar

Stargazers

 avatar

Watchers

 avatar  avatar

preferencesdelegate's Issues

Serializing a list of POJO objects with json

Hello to the project owner!

Seems like an interesting project.
Small question to see if it can solve neatly something that has bothered me recently.

I was recently trying to serialize with json & sharedpreferences a list of plain old java objects.
Let's say

data class Pojo (var foo : Int = 1, var bar : Int = 42)

It proved to be much combersome than necessary, because of type erasure on collection. See stackoverflow http://stackoverflow.com/questions/5813434/trouble-with-gson-serializing-an-arraylist-of-pojos

I ended up doing this (with this magical "type" variable telling gson that type information that was erased at compile time

public class PojoList (var list: List<Pojo> = emptyList()) {
    val KEY_POJOS = "PojoList"
    val type = object : TypeToken<ArrayList<Pojo>>() {}

    fun fetchFromDisk(context : Context) : Boolean {
        val preferences = context.getSharedPreferences("preferences.txt", Context.MODE_PRIVATE)

        val pojos = preferences.getString(KEY_POJOS, "")
        try {
            list = Gson().fromJson(pojos, type.getType())
            return true
        } catch(e: Exception) {
            return false
        }

    }
    fun saveToDisk(context: Context, list :  List<Pojo> ) {
        $list = list
        val preferences = context.getSharedPreferences("preferences.txt", Context.MODE_PRIVATE)
        preferences.edit()
                .putString(KEY_POJOS, Gson().toJson(list.toArrayList(), type.getType()))
                .apply()
    }

}

Surely, we can do better than that?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.