Applet 与 Servlet
JAVA中Applet和Servlet有什么区别
Whats the difference between Applet and Servlet in JAVA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
JAVA中Applet和Servlet有什么区别
Whats the difference between Applet and Servlet in JAVA
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
Applet运行在客户端,servlet运行在服务器上。就这么简单。
更具体地说,该小程序被下载到客户端,并在浏览器内的 JRE 中执行,并且可以在小程序框架内显示它想要显示的任何内容。相反,servlet 在服务器上运行并(通常)生成一个 HTML 页面,该页面显示在您的浏览器中。
Applet runs on the client, servlet runs on the server. It's as simple as that.
More specifically, that applet is downloaded to the client, and executes in a JRE inside the browser, and can display whatever it wants to display within the applet frame. The servlet instead runs on the server and (generally) produces a HTML page which is displayed in your browser.
Java Applet 是在客户端的 JVM 上运行的 Java 类(通过浏览器插件)。
Java Servlet 在服务器端的 Servlet 容器(如 Apache Tomcat)中运行,客户端以纯旧 HTML 的形式接收结果。
关键区别在于,一个在客户端运行,另一个在服务器端运行。
A Java Applet is a Java class which is run on the client's JVM (via a Browser Plugin).
A Java Servlet is run on the server-side in a Servlet container, like Apache Tomcat and the client recieves the results in the form of plain old HTML.
The key difference is that where as one runs on the client side, the other on the Server side.
applet 是桌面应用程序,Servlet 是 Web 应用程序
Applet 在客户端计算机上运行,Servlet 在服务器计算机上运行并产生
借助中的请求和响应参数,客户端浏览器上的 html 页面
Java.servlet.*;
包裹
applet is the Desktop application and the Servlet is the web Application
Applet is run on the Clients machine and the Servlet is run the Server Machine And produce
the html page on the client browser with the help of the Request And Response Parameter in
the Java.servlet.*;
Package