Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Simple Android App (2014) Getting Started with Android Setting Up an Android Development Environment for Windows

"javac -version" vs "java -version"

What is the difference between "java -version" and "javac -version"?

2 Answers

Seth Kroger
Seth Kroger
56,413 Points

"javac -version" checks for the Java compiler, which is only included with the Development Kit. It's quite possible to have a Java Runtime Environment (JRE) installed already to run other apps/website applets which includes the java command, so you want to specifically want to check for the presence of javac.

java -version gives you the version of the JDK you're running, I guess; where javac -version is the compiler version.

I have no idea above that! Sorry!

Steve.