首页 > 其他 > 详细

Unload Java JNI DLL

时间:2014-03-09 10:25:56      阅读:546      评论:0      收藏:0      [点我收藏+]

The problem

Once a dll is loaded in a java program using either System.load() or System.loadLibrary(), how do we unload it? Theoretically the dll should be unloaded when the corresponding class loader is being garbage collected.

When a class loader is garbage collected?

A class loader is garbage collected when:

  • All objects of classes loaded by the class loader should be garbage collected.
  • All references pointing to the class loader object should be null.

What class loader should we use?

It is not possible to use the default class loader because it won‘t be garbage collected. So, we should create our own class loader and use it instead of the default one.

Check these links for custom java class loaders implementations:

Simple Java Custom Class Loader Implementation
Java Custom URL Class Loader Implementation With Repository
Java Custom URL Class Loader Implementation With Resource List

DLL unloading example using the custom class loader

Create a file A.java and add the following code.

package com.codethesis.example;

public class A {
    public A() {}

    static {
        System.loadLibrary("mydll");
    }

    public native void print();

    public void finalize() {
        System.out.println("A garbage collected");
    }
}

You‘ll need to have a JNI dll mydll.dll in the classpath which contains a method print() as shown in the code. Then create a file Test.java and add this code:

package com.codethesis.example;

import java.lang.reflect.Method;

public class Test {
    public static void main(String[] args) throws Exception {
        CustomClassLoader cl = new CustomClassLoader();
        Class ca = cl.findClass("com.codethesis.example.A");
        Object a = ca.newInstance();
        Method p = ca.getMethod("print");
        p.invoke(a);
        p = null;
        ca = null;
        a = null;
        cl = null;
        System.gc();
    }
}

After System.gc() is called the custom class loader will be garbage collected and the dll wlll be unloaded.

 

Why do we use java reflection?

Isn‘t it possile just to cast the "a" object to type "A" as it is in the code below?

package com.codethesis.example;

import java.lang.reflect.Method;

public class Test {
    public static void main(String[] args) throws Exception {
        CustomClassLoader cl = new CustomClassLoader();
        Class ca = cl.findClass("com.codethesis.example.A");
        A a = (A)ca.newInstance(); //a ClassCastException is thrown!
        a.print();
        ca = null;
        a = null;
        cl = null;
        System.gc();
    }
}

Actually, it is not possible because A class is loaded by the default class loader and therefore these are two different classes. However there is a simple solution for this problem using interfaces. Create a file IA.java and add the following code inside:

package com.codethesis.example;

public interface IA {
    public void print();
}

Then modify the A class to implement this interface:

package com.codethesis.example;

public class A implements IA {
    public A() {}

    static {
        System.loadLibrary("mydll");
    }

    public native void print();

    public void finalize() {
        System.out.println("A garbage collected");
    }
}

The Test class should look like this:

package com.codethesis.example;

public class Test {
    public static void main(String[] args) throws Exception {
        CustomClassLoader cl = new CustomClassLoader();
        Class ca = cl.findClass("com.codethesis.example.A");
        IA ia = (IA)ca.newInstance();
        ia.print();
        ca = null;
        ia = null;
        cl = null;
        System.gc();
    }
}

来源:http://www.codethesis.com/

Unload Java JNI DLL,布布扣,bubuko.com

Unload Java JNI DLL

原文:http://www.cnblogs.com/beautiful-scenery/p/3588834.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!