get Stop Words - Java java.lang

Java examples for java.lang:String Algorithm

Description

get Stop Words

Demo Code


//package com.java2s;

import java.util.HashSet;

public class Main {
    public static void main(String[] argv) throws Exception {
        getStopWords();/*from ww  w  .  ja  v  a 2s . c  o  m*/
    }

    public static HashSet<String> stopWords;

    private static void getStopWords() {
        String[] word_list = "a,able,about,across,after,all,almost,also,am,among,an,and,any,are,as,at,be,because,been,but,by,can,cannot,could,dear,did,do,does,either,else,ever,every,for,from,get,got,had,has,have,he,her,hers,him,his,how,however,i,if,in,into,is,it,its,just,least,let,like,likely,may,me,might,most,must,my,neither,no,nor,not,of,off,often,on,only,or,other,our,own,rather,said,say,says,she,should,since,so,some,than,that,the,their,them,then,there,these,they,this,tis,to,too,twas,us,wants,was,we,were,what,when,where,which,while,who,whom,why,will,with,would,yet,you,your"
                .split(",");
        stopWords = new HashSet<String>();
        for (int i = 0; i < word_list.length; i++) {
            stopWords.add(word_list[i]);
        }
    }
}

Related Tutorials