Java - Java Executable (Java.exe or Javaw.exe)

Java Conceptuel Diagram

About

See Java - Java Virtual Machine (JVM|Java)

The standard launcher command (java or javaw.exe) in JDK or JRE is no more than a simple C program linked with the Java Virtual Machine. The launcher parses the command line arguments, loads the virtual machine, and runs Java applications through the invocation interface. The arguments to the Java Virtual Machine are defined in jni.h.

See Java - Getting Started - Hello World

Article Related

Documentation / Reference





Discover More
Card Puncher Data Processing
Data Type - Static Typing

Static typing, otherwise known as type enforcement, is when a variable got a type that will never changes during runtime. The variable (container) is declared to hold only a specific type of value, such...
Eclipse Main Class
Java - (Main|Start) Class

in Java is called a Main class. The (Main|Start) class is a class that: have a main method will start the main thread (process) main classjar You can start the java application by: calling...
Java Conceptuel Diagram
Java - Application

An application in shipped in an archive format with a main class that contains a main method that starts the application. instancejava/lang/Runtimeclass RuntimeOperating System environment ...
J2ee Server
Java - Container

A container is a logical part of a J2EE Server which contains java components Before any component can be executed, it must be assembled. The assembly process involves per logical container: the...
Java Conceptuel Diagram
Java - Launcher

A launcher commonly refers to a program that start an application. For Java, the standard launcher is (java or javaw.exe). Common Launcher...
Java Conceptuel Diagram
Java - What is the Classpath?

Java classes needed to execute a Java program can be physically located in different file system directories. When Java classes are loaded, it searches a list of directories that are specified in what's...
Card Puncher Data Processing
Oracle Database - Table Function (Pipelined)

table function (PIPELINED functions) in Oracle. Oracle9i introduces a family of new features to support more scalable and efficient ETL (Extraction, Transformation, Load) processing for data warehouses...
Card Puncher Data Processing
Tool Command Language (TCL)

Tcl (from “Tool Command Language”) is a scripting language created by John Ousterhout. intended to be embedded into applications ( Oracle Warehouse Builder use it as scripting language : Mixed with...



Share this page:
Follow us:
Task Runner