运行在Web浏览器的Java应用程序
我是比较新的java和具有由一对夫妇的包和一些类的Java应用程序。我希望能够运行在Web浏览器此应用程序。我怎么会去这样做?
I am relatively new to java and have a java application consisting of a couple of packages and a number of classes. I want to be able to run this application in a web browser. How do i go about doing this?
Java Web Start的是一个很好的技术,在Web上部署Java应用程序。您可以从一个网页链接的应用程序,不过应用程序运行在Web浏览器框架之外:的Java网络入门教程。
Java Web Start is a good technology for deploying Java applications over the web. You can start the application from a web page link, although the application runs outside of the web browser frame: Java Web Start Tutorial.
Java小程序允许嵌入在网页中的Java应用程序。它有一些严重的缺点对于较大的应用程序。
Java applets allow you to embed a Java application in a web page. It has some serious drawbacks for larger applications.
Servlet的(和Java Server Pages)是服务器端生成的网页(和其他Web内容的)合适的技术,但这些技术不会帮助您部署现有的基于Swing的Java应用程序,除非你是prepared替换用户界面
Servlets (and Java Server Pages) are appropriate technologies for server-side generation of web pages (and other web content) but these technologies won't help you to deploy an existing Swing-based Java application, unless you are prepared to replace the user interface.