/** Read the sequence of words on INPUT, and return as a List. If LINKED,
* use a linked representation. Otherwise, use an array representation.
*/
static List<String> readList(Scanner input, boolean linked) {
List<String> L;
if (linked) {
L = new LinkedList<String>();
} else {
L = new ArrayList<String>();
}
while (input.hasNext()) {
L.add(input.next());
}
for (String word : L) {
word = word.toLowerCase();
}
return L;
}
这是我从文本文件中读取单词并将其作为列表返回的代码。但是,我想让文件中的所有单词都小写,但是 toLowerCase 方法不起作用。关于如何使它们全部小写的任何建议?