Where is HelloWorld.so located? You probably need to specify its parent directory using the command-line parameter "-Djava.library.path".
For example, if it's in "/path/libs/HelloWorld.so", add -Djava.library.path=/path/libs as an option when invoking java. For instance, it's "-Djava.library.path=lib" on one of my projects.
Edit: Dan Dyer points out that the environment variable LD_LIBRARY_PATH also can be used for this.
