Java 8中的GroupingBy流具有3个以上的分组级别

dxpyg8gm  于 2024-01-05  发布在  Java
关注(0)|答案(2)|浏览(162)

我需要像下面这样生成一个输出JSON

  1. {
  2. "account":{
  3. "Alpha":{
  4. "OLD":{
  5. "long":"zerozerooneO",
  6. "short":"001O"
  7. },
  8. "NEW":{
  9. "long":"zerozerooneN",
  10. "short":"001N"
  11. }
  12. },
  13. "Beta":{
  14. "OLD":{
  15. "long":"zerozerooneO",
  16. "short":"001O"
  17. },
  18. "NEW":{
  19. "long":"zerozerooneN",
  20. "short":"001N"
  21. }
  22. }
  23. }
  24. }

字符串
从下面的对象列表中获取示例

  1. [
  2. {
  3. "codetype":"Alpha",
  4. "shortOldCode":"001O",
  5. "longOldCode":"zerozerooneO",
  6. "shortNewCode":"001N",
  7. "longNewCode":"zerozerooneN"
  8. },
  9. {
  10. "codetype":"Beta",
  11. "shortOldCode":"001O",
  12. "longOldCode":"zerozerooneO",
  13. "shortNewCode":"001N",
  14. "longNewCode":"zerozerooneN"
  15. }
  16. ]


我试过这样的方法

  1. Map<String, Map<String, Map<String, List<Object>>>> newList = new HashMap<>();
  2. newList = dataMap.stream()
  3. .filter(distinctByKey(code -> code.getCodeType())).collect(
  4. groupingBy((GetCodeTypes a) -> "account",
  5. groupingBy((GetCodeTypes b) -> b.getCodeType(),
  6. groupingBy((GetCodeTypes c) -> "OLD",
  7. mapping(
  8. v -> {
  9. GetCodeTypesResponse.Old
  10. oldCode = new GetCodeTypesResponse.Old();
  11. oldCode.setLongs(v.getLongOldCode());
  12. oldCode.setShorts(v.getShortOldCode());
  13. return oldCode;
  14. }, toList())))));


希望任何人都能给我指出一个正确的方向,在Java 8中使用hashmap来获得所需的输出。我知道使用记录进行分组/Map可能适用于新版本的Java,但我正在做的项目是Java 1.8,如果可能的话,我想使用Java Streams来解决这个问题。

wz1wpwve

wz1wpwve1#

这里有一个合理的,但不基于流的解决方案来解决你的问题:

  1. package com.learn.grouping;
  2. import com.fasterxml.jackson.annotation.JsonProperty;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import lombok.ToString;
  6. /**
  7. * This is the format of your input JSON
  8. */
  9. @Getter
  10. @Setter
  11. @ToString(doNotUseGetters = true)
  12. public class BlamItemInput
  13. {
  14. @JsonProperty("codetype")
  15. private String codeType;
  16. private String longNewCode;
  17. private String longOldCode;
  18. private String shortNewCode;
  19. private String shortOldCode;
  20. }
  21. package com.learn.grouping;
  22. import java.util.List;
  23. import org.apache.commons.collections4.CollectionUtils;
  24. import org.springframework.stereotype.Component;
  25. /**
  26. * This converts from input format to desired output (layered map) format.
  27. */
  28. @Component
  29. public class BlamConverter
  30. {
  31. public CodeTypeMap convert(final List<BlamItemInput> blamItemInputList)
  32. {
  33. final CodeTypeMap returnValue;
  34. if (CollectionUtils.isNotEmpty(blamItemInputList))
  35. {
  36. returnValue = new CodeTypeMap();
  37. for (final BlamItemInput current : blamItemInputList)
  38. {
  39. final KapowItem kapowItem = new KapowItem();
  40. kapowItem.setNewItem(current.getLongNewCode(), current.getShortNewCode());
  41. kapowItem.setOldItem(current.getLongOldCode(), current.getShortOldCode());
  42. returnValue.addKapowItem(current.getCodeType(), kapowItem);
  43. }
  44. }
  45. else
  46. {
  47. returnValue = null;
  48. }
  49. return returnValue;
  50. }
  51. }
  52. package com.learn.grouping;
  53. import java.util.HashMap;
  54. import java.util.Map;
  55. import com.fasterxml.jackson.annotation.JsonProperty;
  56. import lombok.Getter;
  57. import lombok.ToString;
  58. /**
  59. * Top level of the output format
  60. */
  61. @Getter
  62. @ToString(doNotUseGetters = true)
  63. public class CodeTypeMap
  64. {
  65. @JsonProperty("account")
  66. private final Map<String, KapowItem> kapowMap = new HashMap<>();
  67. public void addKapowItem(
  68. final String keyValue,
  69. final KapowItem newCodeTypeItem)
  70. {
  71. kapowMap.put(keyValue, newCodeTypeItem);
  72. }
  73. }
  74. package com.learn.grouping;
  75. import com.fasterxml.jackson.annotation.JsonProperty;
  76. import com.fasterxml.jackson.annotation.JsonPropertyOrder;
  77. import lombok.Getter;
  78. import lombok.ToString;
  79. /**
  80. * Second level of the output JSON
  81. */
  82. @Getter
  83. @ToString(doNotUseGetters = true)
  84. @JsonPropertyOrder({"OLD", "NEW"})
  85. public class KapowItem
  86. {
  87. @JsonProperty("NEW")
  88. private KapowNestedItem newItem;
  89. @JsonProperty("OLD")
  90. private KapowNestedItem oldItem;
  91. public void setNewItem(
  92. final String longValue,
  93. final String shortValue)
  94. {
  95. newItem = new KapowNestedItem(longValue, shortValue);
  96. }
  97. public void setOldItem(
  98. final String longValue,
  99. final String shortValue)
  100. {
  101. oldItem = new KapowNestedItem(longValue, shortValue);
  102. }
  103. }
  104. package com.learn.grouping;
  105. import com.fasterxml.jackson.annotation.JsonProperty;
  106. import lombok.Getter;
  107. import lombok.RequiredArgsConstructor;
  108. import lombok.ToString;
  109. /**
  110. * Bottom (third) level of the output JSON
  111. */
  112. @Getter
  113. @RequiredArgsConstructor
  114. @ToString(doNotUseGetters = true)
  115. public class KapowNestedItem
  116. {
  117. @JsonProperty("long")
  118. private final String longValue;
  119. @JsonProperty("short")
  120. private final String shortValue;
  121. }
  122. package com.learn.grouping;
  123. import java.util.List;
  124. import org.junit.jupiter.api.BeforeEach;
  125. import org.junit.jupiter.api.Test;
  126. import org.junit.jupiter.api.extension.ExtendWith;
  127. import org.mockito.junit.jupiter.MockitoExtension;
  128. import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
  129. import com.fasterxml.jackson.annotation.JsonInclude.Include;
  130. import com.fasterxml.jackson.core.JsonProcessingException;
  131. import com.fasterxml.jackson.databind.DeserializationFeature;
  132. import com.fasterxml.jackson.databind.JsonMappingException;
  133. import com.fasterxml.jackson.databind.ObjectMapper;
  134. import com.fasterxml.jackson.databind.SerializationFeature;
  135. import com.fasterxml.jackson.databind.type.TypeFactory;
  136. /**
  137. * Converter unit test because, you aren't done until after you unit test.
  138. */
  139. @ExtendWith(MockitoExtension.class)
  140. public class TestBlamConverter
  141. {
  142. private static final String INPUT_JSON = "[{\"codetype\":\"Alpha\",\"shortOldCode\":\"001O\",\"longOldCode\":\"zerozerooneO\",\"shortNewCode\":\"001N\",\"longNewCode\":\"zerozerooneN\"},{\"codetype\":\"Beta\",\"shortOldCode\":\"001O\",\"longOldCode\":\"zerozerooneO\",\"shortNewCode\":\"001N\",\"longNewCode\":\"zerozerooneN\"}]";
  143. private BlamConverter classToTest;
  144. private ObjectMapper objectMapper;
  145. @BeforeEach
  146. void beforeEach()
  147. {
  148. final Jackson2ObjectMapperBuilder builder = new Jackson2ObjectMapperBuilder();
  149. builder.featuresToDisable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
  150. SerializationFeature.WRITE_DATES_AS_TIMESTAMPS,
  151. SerializationFeature.FAIL_ON_EMPTY_BEANS);
  152. builder.serializationInclusion(Include.NON_NULL);
  153. objectMapper = builder.build();
  154. classToTest = new BlamConverter();
  155. }
  156. @Test
  157. void convert_allGood_succes() throws JsonMappingException, JsonProcessingException
  158. {
  159. final CodeTypeMap actualResult;
  160. final List<BlamItemInput> inputList;
  161. final String outputJson;
  162. final TypeFactory typeFactory = objectMapper.getTypeFactory();
  163. inputList = objectMapper.readValue(INPUT_JSON, typeFactory.constructCollectionType(List.class, BlamItemInput.class));
  164. actualResult = classToTest.convert(inputList);
  165. outputJson = objectMapper.writeValueAsString(actualResult);
  166. System.out.println("outputJson: " + outputJson);
  167. }
  168. }

字符串

展开查看全部
yfwxisqw

yfwxisqw2#

这是一个简单的非流解决方案,使用JSON库进行转换。
https://github.com/octomix/josson

  1. Josson josson = Josson.fromJsonString("[{\"codetype\":\"Alpha\",\"shortOldCode\":\"001O\",\"longOldCode\":\"zerozerooneO\",\"shortNewCode\":\"001N\",\"longNewCode\":\"zerozerooneN\"},{\"codetype\":\"Beta\",\"shortOldCode\":\"001O\",\"longOldCode\":\"zerozerooneO\",\"shortNewCode\":\"001N\",\"longNewCode\":\"zerozerooneN\"}]");
  2. JsonNode node = josson.getNode(
  3. "map(codetype::" +
  4. " map(OLD:" +
  5. " map(long: longOldCode," +
  6. " short: shortOldCode)," +
  7. " NEW:" +
  8. " map(long: longNewCode," +
  9. " short: shortNewCode)" +
  10. " )" +
  11. ")" +
  12. ".mergeObjects()" +
  13. ".toObject('account')");
  14. System.out.println(node.toPrettyString());

字符串

输出

  1. {
  2. "account" : {
  3. "Alpha" : {
  4. "OLD" : {
  5. "long" : "zerozerooneO",
  6. "short" : "001O"
  7. },
  8. "NEW" : {
  9. "long" : "zerozerooneN",
  10. "short" : "001N"
  11. }
  12. },
  13. "Beta" : {
  14. "OLD" : {
  15. "long" : "zerozerooneO",
  16. "short" : "001O"
  17. },
  18. "NEW" : {
  19. "long" : "zerozerooneN",
  20. "short" : "001N"
  21. }
  22. }
  23. }
  24. }

展开查看全部

相关问题