Differences between JDK and Java SDK

前端 未结 14 1881
抹茶落季
抹茶落季 2020-12-07 12:54

Is there any substantial difference between those two terms?. I understand that JDK stands for Java Development Kit that is a subset of SDK (Software Development Kit). But s

14条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-07 13:49

    The JDK comes with a collection of tools that are used for developing and running Java programs,

    They include:

    1. appletviewer (for viewing Java applets)

    2. javac (Java compiler)

    3. java (Java interpreter)

    4. javap (Java disassembler)

    5. javah (for C header files)

    6. javadoc (for creating HTML documents)

    7. jdb (Java debugger)

    Whereas, the SDK comes with many other tools also including the tools available in JDKs.

    http://parvindersingh.webs.com/apps/forums/topics/show/8853125-solved-java-difference-between-jdk-and-sdk-

提交回复
热议问题