CSCI 1302 Compiling Java on the Unix command line Summer 2008 Suppose your source code is in the file mystuff.java in your working directory. Enter the command "javac mystuff.java" (followed by return/enter); if your source code is syntactically correct no error messages will print, and when the command prompt reappears you'll have a new file mystuff.class in your working directory. This is the Java byte code. Run your code by entering the command "java mystuff param1 param2 ..." (followed by return/enter), where any needed command line parameters are represented by param1 param2 ... (there may not be any for your code).