word分词器使用(java)

2020-12-02  本文已影响0人  Quillagua

1.在pom.xml中导入依赖

 <dependency>
    <groupId>org.apdplat</groupId>
    <artifactId>word</artifactId>
    <version>1.1</version>
</dependency>

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<Word> list = WordSegmenter.seg(words);
        // 保留停用词
        return WordSegmenter.segWithStopWords(words);
    }
}

3.实例

image
上一篇下一篇

猜你喜欢

热点阅读