I got a Java application, I want to provide user ability to compile Java source code (Using JavaCompiler interface)

If the user run the application on a JRE, my application should tell user that the no JavaCompiler instance aviable.

so how to detect JDK or JRE in java programe?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

You can request an implementation of JavaCompiler from ToolProvider. If it returns null, there is no implementation of JavaCompiler available:

JavaCompiler c = ToolProvider.getSystemJavaCompiler();
if (c == null) {
    // JRE
}
link|improve this answer
I'm not sure if that works - it seems like the JavaCompiler interface itself is always available, but the distinction of JDK vs. JRE depends on there being an implementation. – David Zaslavsky Oct 20 '11 at 9:17
@David: Updated. – axtavt Oct 20 '11 at 9:23
feedback

Take a look at stackoverflow thread - How to determine if the Java VM is installed on Windows? , How do I detect which kind of JRE is installed — 32bit vs. 64bit and How can I detect the installed Sun JRE on Windows?

You can use System.getProperties()/System.getProperty() method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.