Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using a java class from Delphi

I need to use the logic contained in some java classes. I found JNI, but that project seems not updated recently.

Is there a way to use it in a Delphi native application? I use Delphi 2009.

like image 486
LaBracca Avatar asked Jun 08 '10 13:06

LaBracca


1 Answers

A newer solution than JNI is JNA, which also supports callbacks from (Delphi) DLLs. I found it easy to use.

like image 188
mjn Avatar answered Sep 28 '22 17:09

mjn