Where can I find a list of the Java Standard libraries?

后端 未结 4 367
孤独总比滥情好
孤独总比滥情好 2021-01-30 11:02

I am new to Java and trying to learn more about it. I studied the documentation and found the following for Java,

Java Docs

Are the packages listed here the same

4条回答
  •  爱一瞬间的悲伤
    2021-01-30 12:00

    In Java 9+, javafx replaces javax as the main UI library:

    1. Is JavaFX replacing Swing as the new client UI library for Java SE?

      Yes. However, Swing will remain part of the Java SE specification for the foreseeable future, and therefore included in the JRE. While we recommend developers to leverage JavaFX APIs as much as possible when building new applications, it is possible to extend a Swing application with JavaFX, allowing for a smoother transition.

    JavaFX FAQ - Oracle.

提交回复
热议问题