viernes
may032002
Capa de abstracción para JNI
viernes, mayo 3, 2002 at 2:00AM
Excelsior acaba de sacar la versión 2.12 de su librería xFunction.
Esta librería permite a los programadores realizar llamadas JNI sin tener que escribir apenas nada de código.
Por ejemplo sería posible hacer algo así:
import com.excelsior.xFunction.*;
...
/* Call Beep(1770,100) from KERNEL32.DLL */
xFunction f = new xFunction("kernel32","int Beep(int,int)");
f.invoke(new Argument(1770), new Argument(100));
Como véis, parece muy sencillo. Podéis echarle un vistazo aquí
Esta librería permite a los programadores realizar llamadas JNI sin tener que escribir apenas nada de código.
Por ejemplo sería posible hacer algo así:
import com.excelsior.xFunction.*;
...
/* Call Beep(1770,100) from KERNEL32.DLL */
xFunction f = new xFunction("kernel32","int Beep(int,int)");
f.invoke(new Argument(1770), new Argument(100));
Como véis, parece muy sencillo. Podéis echarle un vistazo aquí
in j2se
Reader Comments