4

Basically, I'm trying to determine whether a user is using an IBM JDK or Oracle JDK from within the code itself, but can't think of an elegant solution outside of running command line arguments and using a string tokenizer. Does anybody know of an API or native method of discovering these details?

asked Jan 27, 2014 at 10:03
1

2 Answers 2

6

For vendor and version

System.out.println(System.getProperty("java.vendor"));
System.out.println(System.getProperty("java.version"));
answered Jan 27, 2014 at 10:05
Sign up to request clarification or add additional context in comments.

Comments

5

You can just use

String vendor=System.getProperty("java.vendor");
String version = System.getProperty("java.version");
System.out.println(vendor);
System.out.println(version);

This will give your jdk version with the vendor.

Out put:

Oracle Corporation
1.7.0_25
answered Jan 27, 2014 at 10:04

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.