Getting Started with JNI

In this post I am sharing solutions for some problems I have faced while studying Java Native Interface (JNI). Pretty much the same steps found at http://java.sun.com/docs/books/jni/html/start.html were implemented, since I needed the simplest case study possible. Although this study is a Java experiment it involves several other technologies. Moreover, we'll be compiling platform-dependent code (the C++ part of it), which means that the the architecture of the operational system and the version of the JVM where our final JNI ... Read more