Link to home
Start Free TrialLog in
Avatar of Steve Sperber
Steve SperberFlag for United States of America

asked on

Accessing Java Native Methods in WIndows and AIX environment

I have logic written in Native Codes (C++) and I need to generate some file by which I can access those class methods in Java. The generated native file needs to run on windows and AIX environments.

What are the steps to do that?
Avatar of krakatoa
krakatoa
Flag of United Kingdom of Great Britain and Northern Ireland image

Why don't you Google JNI and JNA, and read up about it 'at source'?
... a little bit more precise: http://www.codeproject.com/Articles/2876/JNI-Basics-1

This article and the follow-ups will introduce you on how to call native C/C++ code from Java via JNI. The prerequisites are that your C/C++ code are compiled into a DLL or shared library (for AIX), but that's pretty much it.

A little less brief is this document by IBM: http://www.carfield.com.hk/document/java/tutorial/jni_tutorial.pdf - quite an in-depth introduction into using JNI, will take quite more time to read that one compared to the other article.
Avatar of dpearson
dpearson

JNI is certainly the right technology but it's very complex to build it by hand unless you have a very simple set of methods to support.  The complexity starts to come in when you wish to pass data back and forth between Java and C++, especially as they don't use the same memory allocation system.

For anything mildly complicated I'd suggest taking a good look at SWIG (http://www.swig.org/).  It's a toolkit designed to support interfacing C++ code to other languages - and Java is one of the supported ones.

If you look through the tutorials you can see how to use SWIG to generate the JNI code that you need.  Also using a tool like this has a huge advantage if you ever modify the C++ code that you are calling to because you can just press a button and regenerate the Java interface.

Hope that helps,

Doug
Avatar of Steve Sperber

ASKER

Swig is the good tool but it has no user interface (Only command line).

I checked eclipse CPP but the problem is it does not have the libraries of C++ to run. To make this compile and run I installed MINGW(mingw-get-setup) but still the code did not recognise the compile.
User generated image

Or Is there a free tool that has user interface and easy to make shared libraries/dll/exe)
I'm only familiar with SWIG, which as you say has no GUI.  It's command line only.

Doug
Doug,

Is there a short step by step tutorial using swig to compile and run c++ code. I feel little rushed
ASKER CERTIFIED SOLUTION
Avatar of dpearson
dpearson

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks Doug,

I installed swig on windows however what additional software I need to run gcc commands.
libgmp-10.jpg