J
j.du
hi,
i am developing a web application, in which i need to call dynamic
libraries in a jsp file. like
<% try {
System.loadLibrary("shtest");
} catch (UnsatisfiedLinkError e) {
System.exit(1);
}
%>
that's all right when i load the jsp, there are no error appeared, i
think that means i have no "path" related error in loading the
library. but when i add
<%= adder.add(10,20) %>
where adder is a class in the library, and add is just a function of
the class, into the jsp file, the server reports error that it do not
"know" class adder, can anybody give some tips? thanks in advance!
jasper
i am developing a web application, in which i need to call dynamic
libraries in a jsp file. like
<% try {
System.loadLibrary("shtest");
} catch (UnsatisfiedLinkError e) {
System.exit(1);
}
%>
that's all right when i load the jsp, there are no error appeared, i
think that means i have no "path" related error in loading the
library. but when i add
<%= adder.add(10,20) %>
where adder is a class in the library, and add is just a function of
the class, into the jsp file, the server reports error that it do not
"know" class adder, can anybody give some tips? thanks in advance!
jasper