¿¹Á¦
public
class
Initializer {
public
Initializer() {
super();
}
public
void initialize()
throws
AccessControlException {
AccessController.doPrivileged(
new
PrivilegedAction() {
public
Object
run() {
System.loadLibrary(
"library"
);
//$NON-NLS-1$
return
null
;
}
});
}
}
¼Ö·ç¼Ç
¹Ýµå½Ã ÇÊ¿äÇÑ °æ¿ì°¡ ¾Æ´Ï¸é Ư±Ç ºÎ¿©µÈ ºí·ÏÀ» »ç¿ëÇÏÁö ¸¶½Ê½Ã¿À.
public
Initializer() {
super();
}
public
void initialize() {
System.loadLibrary(
"library"
);
//$NON-NLS-1$
}
}