Re: Loading .so file in java application on Linux

2000-05-02 Thread Juergen Kreileder
> Mo DeJong writes: Mo> Under Linux, you need to set the LD_LIBRARY_PATH to include Mo> the directory where libhello.so lives. Setting the system property java.library.path works too. But the library name has to be "libhello.so", "hello.so" will not work. Mo> On Tue, 2 May 2000

Re: Loading .so file in java application on Linux

2000-05-02 Thread Mo DeJong
Under Linux, you need to set the LD_LIBRARY_PATH to include the directory where libhello.so lives. Mo Dejong Red Hat Inc. On Tue, 2 May 2000, Boris wrote: > I have meet the question about java programming on linux platform. > I will load 'hello.so' file in hello.class in following statement: >

Re: Loading .so file in java application on Linux

2000-05-02 Thread John Rousseau
On Tuesday May 2, 2000, Boris wrote: > I have meet the question about java programming on linux platform. > I will load 'hello.so' file in hello.class in following statement: > static { > System.Loadlibrary("hello"): >} > but when run hello.class by typing 'java hello',system show the f