将Json转换为Java Object时遇到问题。 我的" jsonText"字段有json作为我希望放在String中的值。我的自定义类跟随结构。
Class Custom{
@JsonProperty(value = "field1")
private String field1;
@JsonProperty(value = "jsonText")
private String jsonText;
}
以下是我的代码:
ObjectMapper mapper = new ObjectMapper();
JsonNode node = mapper.readTree(inputString);
String nodeTree = node.path("jsonText").toString();
List<PatientMeasure> measuresList =mapper.readValue(nodeTree,
TypeFactory.defaultInstance().constructCollectionType(ArrayList.class, CustomClass.class) );
转换的Json是:
"field1" : "000000000E",
"jsonText" : {
"rank" : "17",
"status" : "",
"id" : 0
}
有例外:
org.codehaus.jackson.map.JsonMappingException: Can not deserialize instance of java.lang.String out of START_OBJECT token
at [Source: java.io.StringReader@3362f02f; line: 1, column: 108] (through reference chain: com.Custom["jsonText"])
答案 0 :(得分:1)
你可以试试这个:
JSONArray ar= new JSONArray(result);
JSONObject jsonObj= ar.getJSONObject(0);
String strname = jsonObj.getString("NeededString");
答案 1 :(得分:1)
您可以使用这样的自定义反序列化器:
public class AnythingToString extends JsonDeserializer<String> {
@Override
public String deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
TreeNode tree = jp.getCodec().readTree(jp);
return tree.toString();
}
}
然后注释你的字段以使用这个反序列化器:
class Custom{
@JsonProperty(value = "field1")
private String field1;
@JsonProperty(value = "jsonText")
@JsonDeserialize(using = AnythingToString.class)
private String jsonText;
}