Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
System.loadLibrary() - Loading DLL for JNI Interface
An application needs to load a library before it starts to run, how to code?
✍: FYIcenter
One option is to use a static block to load a library before anything is called. For example,
class Test { static { System.loadLibrary("myApp.dll"); } .... }
When you call new Test(), the static block will be called first before any initialization happens. Note that the static block position may matter.
2007-03-03, 7940👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { char *ptr = " Cisco Systems"; *p...
How do we enable SQL Cache Dependency in ASP.NET 2.0? Below are the broader steps to enable a SQL Ca...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
What is the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can p...
What is the purpose of finalization? The purpose of finalization is to give an unreachable object th...