Running an executable jar in android

后端 未结 5 1271
北海茫月
北海茫月 2021-02-05 18:26

is it possible to run an executable jar file (command line based) in android? one of my friend told me that it is possible to run executables written in C. Is it possible for ja

5条回答
  •  庸人自扰
    2021-02-05 18:51

    The only problem with running a jar inside Android is the JVM which under Android is a Dalvik VM which cannot run JSE compiled java programs.

    You can however use JBed which runs a whole JSE JVM under Android: http://jbed.en.malavida.com/android/

提交回复
热议问题