我有一些这样的对象
public class Task {
private String uuid;
private String taskName;
private String description;
...
}
并使用GSon.toJSon解析它
jsonString = gson.toJson(myTask);
将其写在一个类似
的文件中{"uuid":"d594dc13-13d5-4f6a-b7f5-c30c2e52e1b2","taskName":"some taskname","description":"some description" ... }
现在我希望在这些参数周围有类似容器的东西:
Task{"uuid":"d594dc13-13d5-4f6a-b7f5-c30c2e52e1b2","taskName":"some taskname","description":"some description" ... }
我该怎么做?
我使用谷歌的杰克逊图书馆只有Gson。