JDK

Share:

JAVA DEVELOPMENT KIT (JDK):


This contains tools for developing and runing java programs

  1. appletviewer-This is used to run java applets

  2. Javac-Java complier which convert java source code to byte code

  3. java-java interpreter which converts java bytecode to machine code

  4. javap-Java disassembler which is used to convert bytecode files into a program description

  5. javadoc-it creates html format documentation from java source code file

  6. jdb-Java debugger which helps us to find errors in the program

  7. javah-This creates header file when native methods are used (c,c++)

No comments