以全角/半角划分字符串
?
private ArrayList<String> getParseWord(String words) {if (words == null || words.trim().length() == 0)return null;String[] word = Pattern.compile(Stringutils.HALFANDFULLHORNSYMBOLS).split(words);List<String> wordList = Arrays.asList(word);ArrayList<String> wordArr = new ArrayList<String>();if (wordList.size() > 0) {for (int index = 0; index < wordList.size(); index++) {String str = wordList.get(index);if (str != null && str.length() != 0) {wordArr.add(str);}}}return wordArr;}??
?