Skip to content
Advertisement

How can I use Java Stream to find the average of all values that share a key?

I’m having a lot of trouble with trying to average the values of a map in java. My method takes in a text file and sees the average length of each word starting with a certain letter (case insensitive and goes through all words in the text file.

For example, let’s say I have a text file that contains the following::

JavaScript

My method currently returns:

JavaScript

Because it is looking at the letters and finding the average length of the word, but it is still case sensitive.

It should return:

JavaScript

This is what I have so far.

JavaScript

Advertisement

Answer

You are almost there.

You could try the following.

  • We group by the first character of the word, converted to lowercase. This lets us collect into a Map<Character, …>, where the key is the first letter of each word. A typical map entry would then look like

    JavaScript
  • Then, the average of each group of word lengths is calculated, using the averagingDouble method. A typical map entry would then look like

    JavaScript

Here is the code:

JavaScript

Note that, for brevity, I left out additional things like null checks, empty strings and Locales.

Also note that this code was heavily improved responding to the comments of Olivier Grégoire and Holger below.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement