The java environment includes a large number of development tools and hundreds of classes and methods. The development tools are part of the system known as java development kit(JDK) and the classes and methods are part of the java standard library(JSL), also known as the application programming interface (API).
The JDK comes with a number of tool that used to to develop and run your java application programs. They include
The way these tools are applied to build and run application programs is illustrated below.
To create a java program, we need to create a source code file using a text editor. The source code is then compiled suing the java compile javac and executed using the java interpreter java.
The java debugger jdb is used to find errors, if any, in the source code. A compiled java program can be converted into source code with the help of java disassemble " javap".
The JDK comes with a number of tool that used to to develop and run your java application programs. They include
- appletviewer - for viewing java applets.
- javac- java compiler.
- java- java interpreter.
- javap- java dissembler.
- javah- for C header files.
- javadoc- for creating HTML documents.
- jdb - java debugged.
The way these tools are applied to build and run application programs is illustrated below.
To create a java program, we need to create a source code file using a text editor. The source code is then compiled suing the java compile javac and executed using the java interpreter java.
The java debugger jdb is used to find errors, if any, in the source code. A compiled java program can be converted into source code with the help of java disassemble " javap".
0 comments :
Post a Comment
Note: only a member of this blog may post a comment.