Which is the fastest way to access native code from Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T05:39:47Z http://stackoverflow.com/feeds/question/730720 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/730720/which-is-the-fastest-way-to-access-native-code-from-java 4 Which is the fastest way to access native code from Java? simonn 2009-04-08T16:13:58Z 2009-04-08T19:54:52Z <p>Which is the fastest way of calling a native library from Java?</p> <p>The ones I know about are</p> <ul> <li><a href="http://johannburkard.de/software/nativecall/" rel="nofollow">NativeCall</a> - what we're currently using</li> <li><a href="https://jna.dev.java.net/" rel="nofollow">JNA</a> - haven't used it, but looks reasonable</li> <li><a href="http://java.sun.com/j2se/1.4.2/docs/guide/jni/" rel="nofollow">JNI</a> - looks horrendous to write, but we'll do it if we get the speed</li> </ul> http://stackoverflow.com/questions/730720/which-is-the-fastest-way-to-access-native-code-from-java/730749#730749 3 Answer by Jon Skeet for Which is the fastest way to access native code from Java? Jon Skeet 2009-04-08T16:20:20Z 2009-04-08T16:20:20Z <p><a href="http://www.swig.org/" rel="nofollow">Swig</a> makes JNI easier too. </p> <p>In terms of speed, I suspect there will be subtle variations - I strongly suggest you pick a call that you know you'll be making a lot, and benchmark all of the solutions offered.</p> http://stackoverflow.com/questions/730720/which-is-the-fastest-way-to-access-native-code-from-java/730752#730752 3 Answer by sylvarking for Which is the fastest way to access native code from Java? sylvarking 2009-04-08T16:20:39Z 2009-04-08T16:20:39Z <p>JNI is the fastest. JNA is very slow compared to JNI (the call overhead is probably one order of magnitude), but it is a fantastic library because it makes native access so easy. JNA is great if you need to make an occasional call to some native API. If you care about performance, I wouldn't use it in any "tight loops."</p> <p>I'm not sure where NativeCall fits in the spectrum.</p> http://stackoverflow.com/questions/730720/which-is-the-fastest-way-to-access-native-code-from-java/730757#730757 2 Answer by Brian Agnew for Which is the fastest way to access native code from Java? Brian Agnew 2009-04-08T16:22:21Z 2009-04-08T16:45:27Z <p><a href="http://aspsp.blogspot.com/2008/10/java-native-access.html" rel="nofollow">This blog entry</a> claims that due to the introspection mechanisms used by JNA, it'll be significantly slower than JNI. I suspect that NativeCall will use similar mechanisms and thus perform in a similar fashion.</p> <p>However you should probably benchmark based on the particular objects you're referencing and/or marshalling between Java and C.</p> <p>I would second the recommendation of <a href="http://www.swig.org" rel="nofollow">SWIG</a>. That makes life particularly easy (easier) for the Java/C interfacing.</p> http://stackoverflow.com/questions/730720/which-is-the-fastest-way-to-access-native-code-from-java/731564#731564 0 Answer by QuickRecipesOnSymbianOS for Which is the fastest way to access native code from Java? QuickRecipesOnSymbianOS 2009-04-08T19:54:52Z 2009-04-08T19:54:52Z <p>Quite a few parameters influence the performances of interfaces between programing languages: what device the JVM runs on, who developed it (in cas it's not the usual Sun JVM), whether you will need to call back Java code from native code, the threading model of the JVM on your operating system and how asynchronous will the native code be...</p> <p>You may not find a reliable benchmark that measures exactly what you need, I'm afraid. </p>