使用java查找文本文件中单词的频率
我已成功解析给定输入文本文件的全部内容并将每个单词存储在哈希集中。但现在我需要找到这个输入文件中每个单词的频率,关于我该如何做有什么建议吗? :)
Ive managed to parse the entire contents of a given input text file and store each word in a hash set. But now i need to find the frequenct of each of these words in this input file, any suggestions as to how I can go about? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
HashMap
而不是HashSet
并将此类作为值:addWord()
则如下所示:Use a
HashMap
instead of aHashSet
and this class as the value:addWord()
then looks like this: