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?

1

2 Answers 2

6

For vendor and version

System.out.println(System.getProperty("java.vendor"));
System.out.println(System.getProperty("java.version"));
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

Comments

Your Answer

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.