How to store object in sqlite database?

后端 未结 3 477
南方客
南方客 2020-12-01 00:24

Is it possible to store user defined objects in a SQLite database from Android? For example: I am creating one class and I want to store that class object in the database.

3条回答
  •  心在旅途
    2020-12-01 00:59

    You'll need to be able to serialize your object into a byte stream and then recreate your object from a byte stream.

    Then, just store that byte stream in your db.

    EDIT: Read this article to learn about serialization in Java. It caters to the subject in a much better way than I would be able to by just giving some code snippets.

提交回复
热议问题