Reputation: 1
keytool error: java.io.FileNotFoundException: C:\Program Files\Java\jdk1.8.0_221\jre\lib\security\cacerts (The system cannot find the path specified)
Upvotes: 0
Views: 1958
Reputation: 888
From what I can gather from the screenshots, you are working on jdk1.8.0_111 directory.
You are trying to read cacerts
from jdk1.8.0_221 directory, that is supposing to do not exists (FileNotFoundException
is raised).
Upvotes: 1