vote up 1 vote down star

Hello.

Have anyone successfully managed to setup a combined Java/C++ project for Eclipse?

What I am trying to do is quite simple;

1) Compile my Java sources 2) Run Javah to create the JNI interface 3) Compile all the C/C++ sources 4) Link native shared library + package the JAR

Hints or even real projects which work are much welcome.

(Eclipse 3.5)

flag
This isn't really related to your question but I'm curious: do you need to use JNI/C++? If so, what for? Is it something Java NIO could do? – cletus Oct 26 at 11:43
The JNI is a bridge between Java and some old crypto hardware, and the API for the device is only available as a c-library. Right now I have two eclipse projects, one for java classes and second for the native parts in C. Unnecessary, I think Eclipse should be able to do it in one. :/ – ointment Oct 26 at 12:19

3 Answers

vote up 1 vote down check

This really sounds like a job for a build system, like ant. Simply configure your Java project to use the ant builder. You would still get the benefits of language specific support for your C++ and Java projects, and, one click build of the project.

link|flag
Thanks. I'll take a look at this. – ointment Oct 26 at 15:18
vote up 0 vote down

I'm using the ant cpptasks for realizing a JNI project with Eclipse only on Linux and Windows. It was some work to get it running with the MSVC (Windows) and the GNU C++ compiler (getting all compiler and linker flags properly since has been done with Visual Studio Magic before) but it was really worth it.

For generating the C++ Header with javah and all the other Tasks you mentioned Ant will probably be the tool of choice, too.

link|flag
vote up 0 vote down

ointment, I have been looking for an example on how to make a JNI program in eclipse and be able to build it successfully for a few days now without finding one, please let me know if you find something...I am trying to do the exact same thing. Thank you much.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.