FAQ 2c Updated: 1/7/00 >>>>>> How Do I run Java Code? ================================== Applets can use browsers, see below. You can use 'JView' which comes with most Microsoft operating systems: jview MyProgram.class You can install Sun's JDK or JRE (java runtime environment) then use 'java.exe'. See FAQ_2b.html for details: java MyProgram ALERT: java.exe & jview.exe are CASE SENSITIVE. 'helloworld.java' is not the same as 'HelloWorld.java' >>>>>> Running Applets in a Browser =================================== Create a web page called 'MyPage.html'. Edit the page so it looks like this: <html><body> <applet code="MyApplet.class" width="400" height="300"></applet> </body></html> This will run your applet. NOTE: This only works for APPLETs. See FAQ_1b.html on how to make applets. >>>>>> Extended answer for people with lots of money. ===================================================== Java Development Environments allow you to run your java code. See the bottom of FAQ_2a.html for details.