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

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

    Also it would be a lot faster to create an AWT Window (or maybe a Frame) instead of a JFrame because the latter has to pull in a gazillion of additional class files.

提交回复
热议问题