So i have the following code in C that utilizes Java Native Interface however i would like to convert this to C++ but am not sure how.
#include
Have you tried wrapping your C code in an extern "C". See C++ Faq Lite for more information, and for other possible mechanisms to let you use your C code with C++.
extern "C"