user870855
user870855

Reputation: 1

How to determine the Java JDK version and sdk version?

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

Answers (3)

Art Licis
Art Licis

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

Suhail Gupta
Suhail Gupta

Reputation: 23276

After placing bin in your PATH open cmd and type java -version

Upvotes: -1

duffymo
duffymo

Reputation: 309008

java -version will tell you.

Upvotes: 3

Related Questions