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

后端 未结 10 1013
醉梦人生
醉梦人生 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:04

    Java is the wrong tool for this. Setting up the JVM involves a lot of stuff happening in the background before the first line of Java code can be executed, and there's really no way to get around it.

提交回复
热议问题