Error: The import java.nio.file.Files cannot be resolved

后端 未结 2 1052
遇见更好的自我
遇见更好的自我 2021-02-11 01:18

Java newbie here,

Using jdk1.8.0_05, I seem to be unable to resolve the java.nio.file.Files class

import java.nio.file.Files;

with the

2条回答
  •  南旧
    南旧 (楼主)
    2021-02-11 01:44

    Files cannot be resolved
    Paths cannot be resolved

    FIX :

    import java.nio.file.*;
    

提交回复
热议问题