Find the no. of occurrence of each element in an user entered list of nos. code example
Example: get ocurrences in array java
List asList = Arrays.asList(array);
Set<String> mySet = new HashSet<String>(asList);
for(String s: mySet){
System.out.println(s + " " +Collections.frequency(asList,s));
}