J'appelle une autre API et j'obtiens la réponse json suivante
{ "metadata": {}, "data": { "productid": 102001, "productname": "p101", "branddetail": { "brandid": 3840, "brandname": "abc", "brandcode": "x01" } } }
Comment décompresser les détails de la marque et les lire comme une entité de classe comme ci-dessous ?
HttpGet httpGet = buildHttpGet("/externalApiURL"); HttpResponse response = getHttpClient().execute(httpGet); HttpEntity entity = response.getEntity(); if (entity != null && response.getStatusLine().getStatusCode() == HttpStatus.OK.value()) { ObjectMapper objectMapper = new ObjectMapper(); BrandDetail brandDetail = objectMapper.readValue(entity.getContent(), BrandDetail.class); }
Merci d'avance
Utilisez convertvalue()
, voici un test.
@data public class branddetail { private int brandid; private string brandname; private string brandcode; }
@Test public void demo() throws Exception { ObjectMapper mapper = new ObjectMapper(); var data = """ { "metadata": {}, "data": { "productId": 102001, "productName": "P101", "brandDetail": { "brandId": 3840, "brandName": "ABC", "brandCode": "X01" } } } """; JsonNode node = mapper.readTree(data); JsonNode brandNode = node.get("data").get("brandDetail"); BrandDetail brandDetail = mapper.convertValue(brandNode, BrandDetail.class); // BrandDetail(brandId=3840, brandName=ABC, brandCode=X01) System.out.println(brandDetail); }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!