将房间数据库导出到json文件

时间:2018-06-18 18:41:14

标签: android sqlite android-sqlite android-room

是否可以将包含所有表格,条目的所有房间数据库导出到json文件?我看到一些example完成了SQLite,但是如何使用Room数据库?

2 个答案:

答案 0 :(得分:3)

您可以根据需要将Room实体对象传递给JSON生成器。如果你想检索一堆实体并将它们写入JSON,你可以这样做。

换句话说,您可以使用JSON生成器将DogCat对象中的数据写入JSON。 DogCat对象的来源 - Room,Retrofit,Realm等 - 并不重要。

实现导出范围("所有房间数据库包含所有表格,条目和#34;)由您决定。

答案 1 :(得分:0)

如果您了解如何将表格从Room Database导出到JSON,将很有帮助。让我们看看如何做。

步骤1:为会议室数据库创建模型

    @Entity(tableName = "students")
    public class Student{
        @PrimaryKey(autoGenerate = true)
        private int id;
        @ColumnInfo(name = "std_name")
        private String name;
        public Student(int id, String name){
            this.id = id;
            this.name = name;
        }
        @Ignore
        public Student(String name){
            this.name = name;
        }
        public int getId() {
            return id;
        }
        public String getName() {
            return name;
        }
     }

第2步:为会议室数据库创建数据访问对象(DAO)

@Dao
public interface StudentDAO {
    @Query("select * from students")
    List<Student> getStudents();

    @Insert
    public void insert(Student student);

    // Other CRUD methods
    // ..........
}

第3步:现在创建房间数据库

@Database(entities = { Student.class }, version = 1, exportSchema = false)
public abstract class StudentDatabase extends RoomDatabase {
    private static final String DB_NAME ="StudentDb";
    private static StudentDatabase stdInstance;
    public abstract StudentDAO stdDAO();    

    public synchronized static StudentDatabase getInstance(final Context context) {
        if (stdInstance == null) {
            stdInstance = Room.databaseBuilder(context, StudentDatabase.class, DB_NAME)
                                        .allowMainThreadQueries().build();
        }
        return stdInstance;
    }
}

第4步:从Room Database中将学生表导出为JSON

// Create reference variables in your Activity
private List<Student> stdList;
private StudentDatabase stdDatabase;

private void exportJSON(){
    Completable.fromAction(new Action() {
        @Override
        public void run() throws Exception {
           // stdDatabase.stdDAO().getStudents();
        }
    }).observeOn(AndroidSchedulers.mainThread())
            .subscribeOn(Schedulers.io())
            .subscribe(new CompletableObserver() {
                @Override
                public void onSubscribe(Disposable d) {
                }

                @Override
                public void onComplete() {
                    stdList = stdDatabase.stdDAO().getStudents();
                    Gson gson = new Gson();
                    Type type = new TypeToken<List<Student>>(){}.getType();
                    String stdJson = gson.toJson(stdList, type);

                    // Call function to write file to external directory
                    writeToStorage(getApplicationContext(), "StudnetJson", stdJson)
                }

                @Override
                public void onError(Throwable e) {
                    // Show error message
                }
            });
    }

//Create a Method in your Activity
public void writeToStorage(Context mContext, String fileName, String jsonContent){      
    File file = new File(mContext.getFilesDir(),"exportStudentJson");
    if(!file.exists()){
        file.mkdir();
    }
    try{
        File mFile = new File(file, fileName);
        FileWriter writer = new FileWriter(mFile);
        writer.append(jsonContent);
        writer.flush();
        writer.close();

    }catch (Exception e){
        e.printStackTrace();

    }
}

即使您听不懂,也请让我写评论。

注意:将来我将为该问题创建一个GitHub项目。谢谢