作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我真的很想找出这段代码有什么问题。 .add() 和 .toArray() 下面有红线。除了写这两行之外,还有其他方法吗?我做错了什么?
package prog3;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.*;
public class WordList {
private String filename;
private Word[] words;
public WordList(String fileName) {
this.filename = fileName;
}
//reads in list of words and stores them internally. line by line
//if method reas list of words successfully, then it returns as true, otherwise false
public boolean readFile() {
try{
BufferedReader read;
read = new BufferedReader(new FileReader(filename));
String nextLine;
while ((nextLine = read.readLine())!= null) {
nextLine = nextLine.trim();
read.add(new Word(nextLine));
}
words = read.toArray(new Word[0]);
}catch(IOException ex){
System.out.println("Caught exception: " +ex.getMessage());
return false;
}
return true;
}
//getList is supposed to return the list of words as an array of class Word. How do I do this???
public Word[] getList() {
}
}
最佳答案
您正在 BufferedReader 上调用 add(
,这是不可能的。
相反,创建一个数组列表:
ArrayList<String> list=new ArrayList<>();
然后添加:
list.add(read.readLine());
完成后,使用列表调用 toArray。
我不会使用 Word 类,因为我们处理的是文本行,而不是单词。
关于java newbie : reading in a file for word search code. .add() 和 .toArray() 给我错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17797374/
我是一名优秀的程序员,十分优秀!