Is it possible to display Swing components in a JSP?

前端 未结 3 1938
一个人的身影
一个人的身影 2020-12-21 16:52

I was wondering if I could pop up JOptionPanes or other Swing components from within a browser using JSP.

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-21 17:33

    You may also want to consider GWT, which enables you to develop a web interface in Java code (the Java code is converted to HTML & JavaScript by the GWT compiler). Although you don't program to the Swing API directly when writing GWT applications, the GWT API is very similar in style to Swing programming.

提交回复
热议问题