Applet 与 Servlet

发布于 2024-08-11 11:11:15 字数 31 浏览 2 评论 0原文

JAVA中Applet和Servlet有什么区别

Whats the difference between Applet and Servlet in JAVA

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

七色彩虹 2024-08-18 11:11:15

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.

苏别ゝ 2024-08-18 11:11:15

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.

﹏半生如梦愿梦如真 2024-08-18 11:11:15

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文