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

Bummer! Hmmm. That output doesn't look right, are you sure you ran java -version?

Bummer! Hmmm. That output doesn't look right, are you sure you ran java -version?

results.txt
# Paste your info below
package com.teamtreehouse;

import java.util.Set;
import java.util.TreeSet;

public class Systemizer{

    public static void main(String[] args) {
    // write your code here
        System.out.printf("This is the classpath: %s %n",
                System.getProperty("java.class.path"));
        Set<String> propNames = new TreeSet<String>(System.getProperties().stringPropertyNames());
        for (String propertyName : propNames) {
            System.out.printf("%s is %s %n",
                    propertyName,
                    System.getProperty(propertyName));
        }
    }
}

1 Answer

I believe the challenge is asking you to go to a DOS (Windows in my cast) and type the following command java -version

and then copy the result you get to the challenge window. Here is mine

java -version
java version "1.8.0_144"
Java(TM) SE Runtime Environment (build 1.8.0_144-b01)
Java HotSpot(TM) 64-Bit Server VM (build 25.144-b01, mixed mode)

if this answers your question, please mark question as answered.

Thanks