Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

151
Views
How to reduce list to map with Java functional API

I want to transform a string of text to a dictionary, which contains all the unique words as a key, and translation as a value.

I know how to transform a String into a stream containing unique words (Split -> List -> stream() -> distinct()), and I have translation service available, but what is the most convenient way to reduce the stream into Map with the original element and it's translation in general?

about 4 years ago · Santiago Trujillo
3 answers
Answer question

0

You can directly do that via collect:

yourDistinctStringStream
.collect(Collectors.toMap(
    Function.identity(), yourTranslatorService::translate
);

This returns a Map<String, String> where the map key is the original string and the map value would be the translation.

about 4 years ago · Santiago Trujillo Report

0

Suppose you have a list of strings "word1", "word2", "wordN" with no repetitions:

This should solve the the problem

List<String> list = Arrays.asList("word1", "word2", "workdN");
    
Map<String, String> collect = list.stream()
   .collect(Collectors.toMap(s -> s, s -> translationService(s)));

This will return, the insertion order is not maintained.

{wordN=translationN, word2=translation2, word1=translation1}

about 4 years ago · Santiago Trujillo Report

0

Try the following code:

public static void main(String[] args) {
    String text = "hello world java stream stream";

    Map<String, String> result = new HashSet<String>(Arrays.asList(text.split(" "))).stream().collect(Collectors.toMap(word -> word, word -> translate(word)));

    System.out.println(result);
}

private static String translate(String word) {
    return "T-" + word;
}

Will give you output:

{java=T-java, world=T-world, stream=T-stream, hello=T-hello}

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!