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 trialCarlos D Gonzalez
1,070 PointsGetting error message when compiling even though is well known, it doesn't let me get passed it
treehouse:~/workspace$ javac Introductions.java
Picked up JAVA_TOOL_OPTIONS: -Xmx128m
Picked up _JAVA_OPTIONS: -Xmx128m
1 Answer
Steve Hunter
57,712 PointsHi Carlos,
Those aren't errors - they're just part of the compiler output. Don't worry about them.
Are you expecting output that isn't there, though? If that's all you got, then your code output nothing?
Steve.
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsAh, no. You haven't run your code. You have just compiled it.
To run it as well, type
javac Introductions.java && java Introductions
That compiles your code then runs it.