What are some differences between apps and applets?

Can someone tell me some differences between apps and applets?

+3
source share
3 answers

Applets have the following methods :

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

The applet can be inside the browser and outside the browser with the draggable function . The application runs outside the browser.

+5
source

I'm not sure of all the differences, but the main thing is that Applets run in a sandbox environment where they are limited by strict policies. For example, you cannot access the local file system if your applet is signed

- Javascript Ajax.

+4

:

  • main(), main().
  • Applets cannot interact with our local machine.
  • Applets run inside a browser with a built-in JVM or in AppletViewer.
+1
source

Source: https://habr.com/ru/post/1781078/


All Articles