文字列配列から同じ単語を削除するには? 使用したいコード例を次に示しますが、機能しません
String[] wordList = outString.toString().split(", ");
for (int i = 0; i < wordList.length; i++) {
for (int j = 0; j < wordList.length; j++) {
if ((wordList[i].equals(wordList[j]))&&(j!=i)) {
wordList.remove(wordList[i]);
}
}
}