Is there a possibility to run applets on Android or Blackberry?

后端 未结 8 1917
庸人自扰
庸人自扰 2021-02-04 11:39

This is what the Java site www.java.com says:

\"KVM, the virtual machine for mobile devices, is the counterpart of JVM (Java virtual machine). It is used to run applets

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-04 12:04

    Applets will NOT run on the BlackBerry for various reasons, most importantly that the AWT classes applets depend on are not available on the BlackBerry. The UI model is very different, consisting of either the MIDP UI model or the BlackBerry model, neither of which is AWT.

    Going forward, you should be using JavaScript for browser-side computing, it's the only thing that will work crossbrowser on mobile platforms. Applets are very much dead technology, unfortunately.

提交回复
热议问题