1: …… 2: public void loadLibrary() throws SecurityException, UnsatisfiedLinkError, NullPointerException { 3: // 외부 라이브러리를 호출 시 절대 경로가 들어 있지 않다. 4: Runtime.getRuntime().loadLibrary(" libraryName"); 5: } 6: ……