I would like to call a c++ program from java application, packaged in a jar file. Is it possible to package and call c++ from the jar file? Thanks
Asked
Active
Viewed 1,911 times
1 Answers
2
-
Actually, you can package so's and dll's in JARs and Java can even load them with JNI! Here's some info on it http://stackoverflow.com/questions/11578903/package-dll-in-jar-using-maven-single-goal – Jon7 Apr 08 '13 at 18:28
-
The C++ program is command line app with input + args and the generated output will be parsed by a java class. I want to deploy the c++ program packaged in a jar file with the java app. – kem Apr 11 '13 at 19:49