String str = "I am doing interview at ePAM I work for EPAM bla bla Bla" ;
Anonimo
System.out.println(Arrays.stream(str.split(" ")).collect(Collectors.groupingBy(Function.identity(), Collectors.counting())) .entrySet().stream().filter(value -> value.getValue() > 1).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)) );