java - Finding .class file in Eclipse -
i need turn in .class file of class eclipse. managed turn in .java version of file clicking , dragging browser, i'm not sure find .class file. i've read can find in "bin" have no idea is.
thanks help!
generally, eclipse projects have following file system:
proj/ .classpath .project src/ foo.java bin/ foo.class
so, navigate project folder, go bin
, , classes should right there.
if on mac:
if in project in command line (you have done cd project
) can
cd bin open .
and class files should show in place can drag them browser. i don't understand why need submit .class
files, generated when code compiled.
Comments
Post a Comment