应用程序和小程序之间有哪些区别?

发布于 2024-10-08 11:10:17 字数 31 浏览 1 评论 0原文

有人可以告诉我应用程序和小程序之间的一些区别吗?

Can someone tell me some differences between applications and applets?

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

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

发布评论

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

评论(3

盗心人 2024-10-15 11:10:17

Applet 具有以下方法

init()、start() ,stop(),destroy()

小程序可以驻留在浏览器内部和浏览器外部,其 可拖动功能
应用程序在浏览器外部执行。

Applets have the following methods:

init(), start(),stop(),destroy()

An applet can live inside the browser and outside the browser with the draggable feature.
An application is executed outside the browser.

夏末的微笑 2024-10-15 11:10:17

我不确定所有差异,但主要的差异是Applet是在沙箱环境中执行的,在沙箱环境中它们受到严格的策略限制。例如,除非您的小程序是签名的,否则您无法访问本地文件系统

通常不建议使用 Applet,而是使用 Javascript 和 Ajax 调用的 Web 应用程序。

I'm not sure of all the differences, but the major one is that Applets are executed in a sandbox environment, where they are restricted by strict policies. For instance, you cannot access the local file system unless your applet is signed

Applets are usually not recommended in favor of Web applications using Javascript and Ajax calls.

熊抱啵儿 2024-10-15 11:10:17

一些区别:

  1. 应用程序必须有 main() 方法,Applet 不包含 main()。
  2. 小程序无法与我们的本地计算机交互。
  3. Applet 在嵌入了 JVM 的浏览器或 AppletViewer 中运行。

Some of the differences:

  1. Application must have main() method, Applet doesn't contain main().
  2. Applets can not interact with Our Local Machine.
  3. Applets runs inside a browser which have JVM embedded or in AppletViewer.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文