+ 1
Calling java code from C/C++
Has somebody experience with calling java code from C/C++ code?
3 Respostas
+ 5
https://www.codeproject.com/Articles/993067/Calling-Java-from-Cplusplus-with-JNI
https://stackoverflow.com/questions/8850202/use-jar-file-in-c-c
http://docs.oracle.com/javase/8/docs/technotes/guides/jni/spec/jniTOC.html
Chapter 5 of above
http://docs.oracle.com/javase/8/docs/technotes/guides/jni/spec/invocation.html
JNI is bidirectional
+ 1
Yes, look up JNI (Java Native Interface).
+ 1
yes,fine I know that is possible to call C code from java but I did not see vice versa.Have you some experience with it?