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 trialkevin williams
2,849 PointsStill receiving "class, interface, or enum expected" error
treehouse:~/workspace$ javac Introductions.java
Picked up JAVA_TOOL_OPTIONS: -Xmx128m
Picked up _JAVA_OPTIONS: -Xmx128m
Introductions.java:1: error: class, interface, or enum
expected
bimport java.io.Console;
^
1 error
Everytime I use java compiler, I receive this error. No idea how to fix.
2 Answers
KRIS NIKOLAISEN
54,971 PointsI was able to recreate the error by changing import to bimport in Introductions.java. If you have bimport change it back to import.
tomaszfurmanczyk
Full Stack JavaScript Techdegree Student 18,242 Pointswhen compiling a java file do the following: javac Introductions.java this will compile the Introductions file and create a Introductions.class file
then while inside the terminal do a command: ls The current files in the directory will be Introductions.java Introductions.class
To run the java file> java Introductions
KRIS NIKOLAISEN
54,971 PointsKRIS NIKOLAISEN
54,971 PointsCan you post your code?