Step By Step |
Remember in Step 1: Write the java Class that you use this method call to load a dynamically loadable library namedhello
into your program at runtime.System.loadLibrary("hello");Now you are ready to create the dynamically loadable library. Use the C compiler to compile the C source code created in the previous steps,
HelloWorld.c
andHelloWorldImp.c
, into a dynamically loadable library namedhello
.See Also
For more information about the C compiler, refer to its manpage.
Step By Step |