Java View all facts Glossary Help |
Java program > application > HTML Converter |
HTML Converter | ||||
subject | fact |
HTML Converter | can be downloaded from Sun | |
has definition An application that converts and existing web page so that all its applets are run by the Java Plug-in | ||
has documentation at Sun | ||
is a subtopic of Applets | ||
is an instance of application | ||
application | consists of one or more classes | |
contains one class that contains a main method which serves as the starting point for the rest of the program | ||
has example of running java HelloWorld | ||
has part 1 main method called its entry point | ||
is similar to an applet | ||
is run by using a Java interpreter to load the application's main class file - this is normally done from the command-line prompt using the java tool from the SDK | ||
to run you type java and the class file name (without its extension) on the command line | ||
Java program | can be compiled on any platform that has a Java compiler | |
can be run on any implementation of the Java Virtual Machine specification | ||
is portable because it is compiled into bytecode that can run on any computer with a Java Virtual Machine | ||
is usually slower than native code | ||
is executed by a Java Virtual Machine | ||
must be readable by humans | ||
runs on a Java platform | ||
should follow consistent guidelines that make the program easy to read | ||
to run you may need platform-specific instructions |
Next application: server Up: application Previous application: compiler