相关文章推荐
俊逸的斑马  ·  activiti5/6 ...·  1 年前    · 
愉快的沙滩裤  ·  css - ...·  1 年前    · 
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams
examples.stream().collect(
    Collectors.groupingBy(Example::getK1,
        Collectors.mapping(Example::getK2,
                Collectors.toList())));

It returns a list of value of k2 not a map;

I'm most of the time with javascript and it's easy to do such kind of work because it's dynamic I think.

Map<String,Map<String,Boolean>> map =
    examples.stream()
            .collect(Collectors.groupingBy(Example::getK1,
                     Collectors.toMap(Example::getK2,v->true,(v1,v2)->v1)));

This is assuming both getK1() and getK2() return a String.

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.