我有一个VideoList对象,我想使用房间库保存,但当我尝试使用@Embedded与公共列表list = null;它给了我以下错误:错误:(23,24)错误:无法弄清楚如何将此字段保存到数据库中。你可以考虑为它添加一个类型转换器。
VideoList Class如下。
@Entity
public class VideoList {
@PrimaryKey
public String id;
public String title;
public String viewType;
public Integer sortingOrder = null;
public String componentSlug;
public String endPoint = null;
@Embedded
public List<Video> list = null;
public boolean hidden = false; }
Any suggestions?
答案 0 :(得分:1)
我认为Convertor是这种嵌套列表对象的最佳解决方案。
public class Converter {
public static String strSeparator = "__,__";
@TypeConverter
public static String convertListToString(List<Video> video) {
Video[] videoArray = new Video[video.size()];
for (int i = 0; i <= video.size()-1; i++) {
videoArray[i] = video.get(i);
}
String str = "";
Gson gson = new Gson();
for (int i = 0; i < videoArray.length; i++) {
String jsonString = gson.toJson(videoArray[i]);
str = str + jsonString;
if (i < videoArray.length - 1) {
str = str + strSeparator;
}
}
return str;
}
@TypeConverter
public static List<Video> convertStringToList(String videoString) {
String[] videoArray = videoString.split(strSeparator);
List<Video> videos = new ArrayList<Video>();
Gson gson = new Gson();
for (int i=0;i<videoArray.length-1;i++){
videos.add(gson.fromJson(videoArray[i] , Video.class));
}
return videos;
}
}
答案 1 :(得分:0)
大多数情况下,您无法使用转换器生成String,因为它们是复杂的对象!
要不重复答案,在另一个相同的问题中,您可以阅读我的answer。