Reputation: 1
I am having "Eclipse IDE for JAVA Developers" and runtime environment 6.0. My question is how can i determine my SDK version and JDk version.
And also help on how to add bouncy castle to work with my eclipse.
Upvotes: 0
Views: 1085
Reputation: 3679
javac -version
will tell the default JDK version and theoretically it can be different from what you get with java -version
if you have both JDK and JRE on the same machine (and it can get more tricky when you have more than one JDK on same machine.. just try to avoid it). Also, please note that in case of Eclipse there's such thing (plug-in) as JDT, which has its own Java compiler.
Upvotes: 1
Reputation: 23276
After placing bin
in your PATH open cmd
and type java -version
Upvotes: -1