我正在编写一个Android应用程序,它从传感器收集数据并将其存储在本地SQLite数据库中。
我想要做的是将此数据(读取:上传)与后端应用程序同步(我正在使用Android&#39的同步适配器)。
由于可以在同步过程中获取数据,我认为将sqlite文件的最大大小设置为700 Kb(并不重要)是合理的,因此同步适配器将同步这些700 Kb文件(通过POST请求),不包括活动文件。一旦sqlite文件达到限制,我将创建一个新的活动sqlite db并写入它。
如何实施?也许,有一个更好的解决方案?
答案 0 :(得分:1)
数据pojo:
@AllArgsConstructor
@NoArgsConstructor
@Builder
@Getter
@Setter
public class Data {
private long id;
private float a;
private float b;
private float c;
private long timestamp;
private long synced_at;
}
MySQLiteHelper:
public class MySQLiteHelper extends SQLiteOpenHelper {
private static MySQLiteHelper sInstance;
public static final String DB_NAME = "db.sqlite";
public static final int DB_VERSION = 1;
public static final String TABLE_NAME = "data";
public static synchronized MySQLiteHelper getInstance(Context context) {
if (sInstance == null) {
sInstance = new MySQLiteHelper(context.getApplicationContext());
}
return sInstance;
}
private MySQLiteHelper(Context context) {
super(context, context.getExternalFilesDir(null).getAbsolutePath() + "/" + DB_NAME,
null, DB_VERSION);
}
@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {
String createDbSql = "...";
sqLiteDatabase.execSQL(createDbSql);
Log.d("log", "db created");
}
@Override
public void onOpen(SQLiteDatabase db) {
super.onOpen(db);
Log.d("log", "db opened");
}
@Override
public void onUpgrade(SQLiteDatabase sqLiteDatabase, int oldVersion, int newVersion) {
Log.d("log", "db upgraded");
}
}