Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to call C or C++ code from a Java Code, i can re-write the code in Java, but need to reuse the existing code..

Thanks

share|improve this question
I would go with JNA. It's built on JNI but quite a bit easier to use. – Hovercraft Full Of Eels Jun 13 '11 at 1:57

2 Answers

up vote 7 down vote accepted

Yes, it's possible using the Java Native Interface.

share|improve this answer

I'd say that JNA or Java Native Access is easier to use. It's built on JNI, but there's no need to create a header file. Instead just call from the dll: Java Native Access

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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