Access to Java jar from Delphi

后端 未结 4 461
遥遥无期
遥遥无期 2020-12-16 22:36

There\'s Java jar binary library with described classes/functions making some usefull things (nothing special just plain Java - no JNI). No sources available.

There\

4条回答
  •  青春惊慌失措
    2020-12-16 23:12

    No you can't the way to go is JNI.

    A few resources:

    • Pacifiers series on using JNI from Delphi
    • my Talking Java from Delphi talk at the EKON 11 conference
    • the Delphi JNI questions on SO

    Unless you have too much time on your hands, in which you could decompress the JAR files (they are ZIP files), write your own Java VM in Delphi and go from there ;-)

提交回复
热议问题