当前位置: 首页 > 工具软件 > Add Score > 使用案例 >

The method add(Object[]) in the type List Object[] is not applicable for the arguments (File).

曹旭东
2023-12-01

今天写Java读取目录下所有文件的实验时遇到一个错误:

The method add(Object[]) in the type List<Object[]> is not applicable for the arguments (File)

List<Object[]>类型中的方法add(Object[])不适用于参数(文件)

 

报错原因:

是因为List写成Object[]型了

        List<Object[]> fileList = new ArrayList<Object[]>();

 

解决方法:

改成File类型就好

        List<File> fileList = new ArrayList<File>();

 

 类似资料: