- public static void main(String[] args) {
-
-
- KeyWordComputer kwc = new KeyWordComputer(6);
- String title = "马航";
- String content = "搜救。helloworld,hi,hi,boy,girl)";
-
- List<Keyword> list = kwc.computeArticleTfidf(title, content);
-
- if(list != null && list.size() > 0){
- for(Keyword kw : list){
-
- System.out.println(kw.getName() + kw.getScore());
- }
- }
- }
复制代码
上面代码,我要抽取6个关键字,但是如果是英文根本就获取不到
刚接触这个,深入的也不是很了解。大家有上面方法支持英文啊
|