Fastest way to create a Java message dialog (swing/awt/other)?

后端 未结 10 852
醉梦人生
醉梦人生 2021-01-17 12:41

I\'m creating a Java application that will do some processing then needs to display a message to give the user feedback.

However, it appears to be incredibly slow -

10条回答
  •  北荒
    北荒 (楼主)
    2021-01-17 13:09

    What you're probably looking for is the new SplashScreen functionality in Java 6. Instead of having to wait for the JVM to load (there's always a cost to load any VM), this will load a screen beforehand.

提交回复
热议问题