应用程序和小程序之间有哪些区别?
有人可以告诉我应用程序和小程序之间的一些区别吗?
Can someone tell me some differences between applications and applets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有人可以告诉我应用程序和小程序之间的一些区别吗?
Can someone tell me some differences between applications and applets?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
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.
我不确定所有差异,但主要的差异是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.
一些区别:
Some of the differences: