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 Exploring Your IDE Check your IntelliJ IDEA Installation

please copy and paste the results from running systemizer locally here

public class Systemizer { public static void main(String[] args) { 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)); }

} }

systemizer_results.txt
# Paste your results here
public class Systemizer {
public static void main(String[] args) {
    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

The objective of the question is to copy/paste the result that you get from running the code that you are passing. Use this question as a reference, since they talk about the same issue: https://teamtreehouse.com/community/timeout-error-after-check-work-button-is-clicked-after-pasting-in-output-from-running-systemizer