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

Java Local Development Environments How it Works Check Your Installation

java -version not giving right result

I ran java -version and copied the output that I am getting from the terminal. But I am getting an error. This is the ouput when I run java -version command:

openjdk version "1.8.0_91" OpenJDK Runtime Environment (build 1.8.0_91-8u91-b14-0ubuntu4~16.04.1-b14) OpenJDK 64-Bit Server VM (build 25.91-b14, mixed mode)

results.txt
# Paste your info below
openjdk version "1.8.0_91"
OpenJDK Runtime Environment (build 1.8.0_91-8u91-b14-0ubuntu4~16.04.1-b14)
OpenJDK 64-Bit Server VM (build 25.91-b14, mixed mode)

2 Answers

Seth Kroger
Seth Kroger
56,413 Points

It's been noted that the challenge is expecting an Oracle JDK instead of Open JDK, which is standard for a lot of people on Linux. There really isn't much difference between the two except for passing this challenge. You could just plug in the output listed in the answer here to get it to pass: https://teamtreehouse.com/community/seems-i-broke-it-linux-for-this-course

Thanks. I completely skipped over the fact I was using OpenJDK. Thanks.