Is Java Swing still in use?

后端 未结 11 2110
鱼传尺愫
鱼传尺愫 2020-12-05 17:32

I am planning on making a Java Swing application and was wondering if Swing is still used or if it has been replaced with something else.

Thanks in advance!

11条回答
  •  失恋的感觉
    2020-12-05 17:53

    Swing is still the preferred way to build heavy-weight, e.g. "Desktop" applications, in Java. If your code is running in a web browser, you will likely use other things. But for freestanding desktop apps, it is quite excellent and in wide use.

提交回复
热议问题