List错误
程序员文章站
2022-04-28 11:24:31
...
使用List<e>出现The type List is not generic; it cannot be parameterized with arguments <Person>错误提示
private static List<Person> readObj(String fileName) throws Exception{
File file = new File(fileName);
//使用list保存读取出来的对象
ArrayList<Person> list = new ArrayList<Person>();
//创建流对象
FileInputStream fis = new FileInputStream(file);
ObjectInputStream ois = new ObjectInputStream(fis);
//读取对象放入list容器中
while(fis.available() > 0){
list.add((Person)ois.readObject());
}
ois.close();
return list;
}
解决方案:
检查导入的宝是否正确,应该导入 java.util.list包,而不是java.awt.List;
错误:import java.awt.List;
正确:import java.util.List;
推荐阅读
-
PHP error_reporting设置错误报告级别_PHP教程
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
登录错误---ORA-12560:TNS:协议适配器错误
-
企业新站上线后 管理人员最容易犯的四大错误总结
-
关于Apache默认编码错误 导致网站乱码的解决方案
-
用了composer install 之后出现以下错误,什么意思?
-
Oracle 安装 Error in writing to directory /tmp/OraInstall 错误 说
-
遭遇ORA-01200错误的原因及解决方法
-
PHP 数组遍历方法大全(foreach,list,each)
-
【wordpress for sae】安装完以后博客首页出现数据库错误