Java Programming - null

dear sir i would like to know how to intgrate the code of c in java......i have made a gui form so that i want c code for running the process.would yu kindly explain the code.......
[195 byte] By [sanjeev_suku99@yahoo.co.ina] at [2007-11-26 23:19:35]
# 1

dear sir

Did you know there are also female software developers?

i would like to know how to intgrate the

code of c in java......i have made a gui form so that

i want c code for running the process.would yu kindly

explain the code.......

You can do it through JNI:

http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jni.html

prometheuzza at 2007-7-10 14:22:24 > top of Java-index,Java Essentials,Java Programming...
# 2
if you don't understand what prometheuzz said than use google search
G_Abubakra at 2007-7-10 14:22:24 > top of Java-index,Java Essentials,Java Programming...
# 3

Sanjeev u need to know about JNI and need Java as well as a C compiler.

You have touse JNI with your C code, compile it and get a .dll file that you can use with Java by loading the library dll file using the

loadLibrary(libname);

You can then easily call the C procedures you have written.

But u really need to understand JNI.

elroydsilvaa at 2007-7-10 14:22:24 > top of Java-index,Java Essentials,Java Programming...