Die Seite
https://jna.dev.java.net/ enthält ein Hello World Beispiel, hier der (ungetestete) Code für die Delphi rechne.dll
[FONT="Courier New"]
package com.sun.jna.examples;
import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.Platform;
/** Simple example of JNA interface mapping and usage. */
public class HelloWorld {
public interface CLibrary extends Library {
CLibrary INSTANCE = (CLibrary) Native.loadLibrary("rechnen", CLibrary.class);
int addiere(int zahl1, int zahl2);
}
public static void main(String[] args) {
CLibrary.INSTANCE.addiere(17,4);
}
}[/FONT]