i want to count word frequency to multiple files/documents in java.
e.g.
a1 = {aaa,aaa,aaa,bbb}
a2 = {aaa, aaa, hhh}
a3 = {aaa, hhh, bbb, bbb}
so, i want to count word frequency for every file
for a1 file {aaa = 3, bbb = 1}
for a2 file {aaa = 2, hhh = 1}
for a3 file {aaa = 1, hhh = 1, bbb =2}
I have a method that reads the words from file and then, stores in a LinkedHashMap.Nevertheless, this it will count the frequency of a specific word for all files, but i want to count word frequency separately for every file.
Have anybody any solution?
Thanks
Then, i wrote this:
Set mapset = fileToWordCount.keySet();
for(Object filenameFromMap: mapset){
System.out.println("FILENAME::"+filenameFromMap);
}
but it doesn't print anything.