word分词器使用(java)

1.在pom.xml中导入依赖

 
    org.apdplat
    word
    1.1


2.在代码中使用

package com.vortex.commonAPI.controller;

import javax.servlet.http.HttpServletRequest;

import org.apdplat.word.WordSegmenter;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping(value = "wordSegmenter")
public class WordSegmenterController {
    @RequestMapping(value = "/spliceString", method = RequestMethod.GET)
    public Object spliceString(HttpServletRequest request) {
        String words = request.getParameter("words");
        // 移除停用词进行分词
        // List list = WordSegmenter.seg(words);
        // 保留停用词
        return WordSegmenter.segWithStopWords(words);
    }
}

3.实例

image

你可能感兴趣的:(word分词器使用(java))