1
我想從我得到的三星S健康SDK的BLOB文件中獲取數據。 我實際上做的是:從BLOB文件恢復數據S健康
Cursor c = null;
int i = 0;
c = result.getResultCursor();
if (c != null) {
while (c.moveToNext()) {
byte[] live_data = c.getBlob(c.getColumnIndex(HealthConstants.Exercise.LIVE_DATA));
if (live_data != null) {
// Do something with data.
} else {
Log.d(APP_TAG, "there is no live data.");
}
}
} else {
Log.d(APP_TAG, "There is no result.");
}
「live_data」是包含了所有數據的JSON一個壓縮文件。 我試圖用ZipInputStream解壓縮它沒有成功。 我該怎麼辦?