Explain Java Environment ? (or) Java Development Tool Kit ?
https://www.computersprofessor.com/2017/01/explain-java-environment-or-java.html
|
|
Java environment includes a large
number of development tools are part of the system known as java development
kit is the classes is methods are part of the java standard library (JSL)
also known as application programming interface (API).
|
|
Java development kit (JDK) :
|
|
|
JDK contains collector of tools that
are used for developing is running java programs.
|
|
Applet viewer® To run java applets.
|
|
Javac ® Java complies (translates java
source code to byte code)
|
|
Java ® Java interpreter (runs applets is
applications by interpreting byte code files)
|
|
Javap ® (Java disassembler) ® gives program description.
|
|
Javah® for c header files.
Javadoc ® for creating HTML document.
Jdb ® java debugger.
|
Application Programming Interface :
|
|
Java standard library or (API)
contains hundreds of classes & methods grouped into several functional
packages.
|
|
1
|
Language
support package : A
collection of classes & methods required for implementing basic features
of java.
java. lang * ;
|
2
|
Utilities
package : A
collection of classes to provide ability function functions such as date
& time functions.
java.util. * ;
|
3
|
Input
Output package : A
collection of classes required for input & output manipulation.
java. io.*;
|
4
|
Networking
package : A collection of classes for communicating
with other computers via internet.
java. net. * ;
|
5
|
AWI
package : Abstract window to classes that implement
platform independent graphical user interface.
java. awt. *;
|
6
|
Applet
package : This
includes a set of classes that allows as to create java applet.
java. applet. *;
|