我想将一个类对象保存到db。我使用了Serializable,但是我的类中的一个对象总是为null。
import com.google.android.gms.maps.model.LatLng;
import java.io.Serializable;
import java.util.ArrayList;
public class A implements Serializable {
protected String Name;
protected int Type;
protected transient List<LatLng> Nodes=new ArrayList<LatLng>();
}
节点始终为空。如果我删除&#39; transient&#39;然后所有对象都变为空。
保存到数据库是这样的:
public long InsertList(A Data) {
byte[] bytes = null;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
try {
ObjectOutputStream oos = new ObjectOutputStream(bos);
oos.writeObject(Data);
oos.flush();
oos.close();
bos.close();
bytes = bos.toByteArray();
} catch (IOException ex) {
//TODO: Handle the exception
ex.printStackTrace();
;
}
ContentValues insertValues = new ContentValues();
insertValues.put("Data", bytes);
insertValues.put("Selected", 1);
return mDb.insert("Table", null, insertValues);
}
答案 0 :(得分:1)