If you look at the Java API documentation (go to External Links and click on the link to the documentation), you will see that Character is a constructor. So, you should do the following:
HuffmanCharFreq hcf=new HuffmanCharFreq(1,Character(token.charAt(i)));
|