Why Java based GUI intensive program has performance issues?
GUI intensive Java application mostly run underlying OS specific native libraries which is time and more CPU cycles consuming.
The overall performance of a Java application depends on four factors:
The overall performance of a Java application depends on four factors:
- The design of the application
- The speed at which the virtual machine executes the Java bytecodes
- The speed at which the libraries that perform basic functional tasks execute (in native code)
- The speed of the underlying hardware and operating system