请帮忙。我不能让它工作:
List<AddNewClientSaveAction> data = new ArrayList<AddNewClientSaveAction>();
// AddNewClientSaveAction is a class that collects user input from a number of JTextField values
String line;
final String lastEntryClient = "LAST_ENTRY";
while ((line = br.readLine()) != null) {
if (line.startsWith(lastEntryClient)) {
data.add(lastEntryClient);
}
}
我正在尝试将字符串“lastEntryClient”添加到 ArayList“数据”,但我不断收到代码错误突出显示。
对不起,如果它太明显了。我是 JAVA 的新手。