Ypu will get the "import java.neo.file cannot be resolved" error with following imports:
import java.nio.file.Files;
import java.nio.file.Paths;
To resolve that do the following:
Right click on the project > Properties > Java Compiler > Set Compiler compliance level as 1.7
Refresh the project
Thank you so much for the helpful answer
ReplyDelete