The class in question is sun.security.tools.KeyTool
and I'm using OpenJDK 7. I keep getting "cannot find symbol" though, and I'm no Java expert so I can't figure out through documentation why that could be or if it's gone. Any ideas?
Exact error message:
Main.java:1: error: cannot find symbol
import sun.security.tools.KeyTool;
^
symbol: class KeyTool
location: package sun.security.tools
Code:
import sun.security.tools.KeyTool;
public class Main {
public static void main(String[] args) {
}
}