I am trying to make a standalone graphical Java program that runs on the users desktop (pref. Windows). I did some research, and came across the java.awt.*
package, javafx, and Java Swing.
Can someone tell me the differences?
I am trying to make a standalone graphical Java program that runs on the users desktop (pref. Windows). I did some research, and came across the java.awt.*
package, javafx, and Java Swing.
Can someone tell me the differences?
Java awt is the first generation, Java Swing is the second generation and the JavaFx is the third generation UI-Toolkit for designing and implementing Graphical User Interfaces with Java.
If you want to learn more about these APIs and the other related APIs, you did not mention, please read the discussion here and there is also a video about the differences between these three APIs here.