下截JNative組件
jnative.sourceforge.net/ 到這裡下載JNative開源項目,我下載的是1.3.2
解壓JNative-<st1:chsdate isrocdate="False" islunardate="False" day="30" month="12" year="1899">1.3.2</st1:chsdate>.zip
獲得三個文件,分別是:JNativeCpp.dll,libJNativeCpp.so,JNative.jar 。
JNativeCpp.dll Windows下用的,拷貝到windows / system32目錄下;
libJNativeCpp.so Linux下的,拷貝到系統目錄下;
JNative.jar 這是一個擴展包,導入工程LIB中或將其拷貝到jdk\jre\lib\ext 下,系統會自動加載。
•使用說明
我的項目將使用JNative組件調用一個測試應用服務器狀態的TestAppSvr.dll文件,Dll文件中包含一個TestConnect()方法,返回一個整形的結果(1或0)
首先配置好JNative組件的windows環境:
將Native要用到JNativeCpp.dll放在系統盤的\WINDOWS\system32下
將JNative.jar導入工程中,新建一個調用類:
java 代碼
代碼如下:
package com.tvjody;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import org.xvolks.jnative.JNative;
import org.xvolks.jnative.Type;
import org.xvolks.jnative.exceptions.NativeException;
public class AppSvrTestConnect {
public AppSvrTestConnect() {
}
/**
* 測試應用服務器連接狀態
*
* TestConnect
* @param ip 應用服務器IP
* @param port 端口
* @param intrcpt 是否采用數據壓縮方式 1 :true 0:false
* @return int 1 :成功 0:失敗
* @throws NativeException
* @throws IllegalAccessException
*/
private static final int TestConnect(String ip, int port, int intrcpt)throws NativeException, IllegalAccessException {
JNative n = null;
try {
n = new JNative("TestAppSvr.dll", "TestConnect");
n.setRetVal(Type.INT);
int i = 0;
n.setParameter(i++, Type.STRING, ip);
n.setParameter(i++, Type.INT, "" + port);
n.setParameter(i++, Type.INT, "" + intrcpt);
n.invoke();
return Integer.parseInt(n.getRetVal());
} finally {
if (n != null)
n.dispose();
}
}
/**
* 指定Dll文件路徑,動態加載本地鏈接庫,測試應用服務器連接狀態
* setDllPath
* @param path Dll文件的路徑,不包含DLL名稱 例如:windows - d:\test\test\ unix - root/test/test/
* @param ip 應用服務器IP
* @param port 端口
* @param intrcpt 是否采用數據壓縮方式 1 :true 0:false
* @return int 1 :成功 0:失敗
* @throws NativeException
* @throws IllegalAccessException
*/
public static final int TestConnectFromDllPath(String path,String ip, int port, int intrcpt) throws NativeException, IllegalAccessException{
path += "TestAppSvr.dll";
System.load(path);
return TestConnect(ip,port,intrcpt);
}
/**
* Dll文件放在JRE\bin目錄下面,ClassLoader就能通過System.loadLibrary()動態加載本地鏈接庫
* TestConnectFromDllPath
* @param ip 應用服務器IP
* @param port 端口
* @param intrcpt 是否采用數據壓縮方式 1 :true 0:false
* @return int 1 :成功 0:失敗
* @throws NativeException
* @throws IllegalAccessException
*/
public static final int TestConnectFromDllPath(String ip, int port, int intrcpt) throws NativeException, IllegalAccessException{
System.loadLibrary("TestAppSvr");
return TestConnect(ip,port,intrcpt);
}
}
這個類實現了一個靜態私有方法,用來調用Dll文件中的方法返回結果
private static final int TestConnect(String ip, int port, int intrcpt)
兩個靜態公共方法,分兩種方式裝載DLL文件
public static final int TestConnectFromDllPath(String path,String ip, int port, int intrcpt) //通過DLL文件的路徑
public static final int TestConnectFromDllPath(String ip, int port, int intrcpt) //通過ClassLoader 然後新建一個類,調用AppSvrTestConnect.java,實現方法一調用,我是將TestAppSvr.dll文件與Demo.java放在一個目錄下 ,所以得到Demo.java的路徑後就可以得到TestAppSvr.dll的路徑,調用AppSvrTestConnect.TestConnectFromDllPath()方法後就能返回正確的信息.方法二是已經將TestAppSvr.dll放在了Jre\bin目錄下,在JVM的Classloader的時候會自動加載,然後通過System.loadLibrary("TestAppSvr")就可以裝配DLL文件.
java 代碼
代碼如下:
public class Demo {
public int getInfo() throws NativeException, IllegalAccessException{
String path=getClass().getResource(File.separator).getPath();
path = path.substring(1,path.length());
System.out.println(path); //得到DLL文件的路徑
String ip = "192.168.0.48"; //服務器IP
int port = 221; //端口
int intrcpt = 1; //數據壓縮方式傳送,1為采用;0為不采用
//方法1 傳入Dll文件的路徑
//int info = AppSvrTestConnect.TestConnectFromDllPath(path, ip, port, intrcpt);
//方法2 Dll文件已經放在JRE\bin目錄下面
int info = AppSvrTestConnect.TestConnectFromDllPath(ip, port, intrcpt);
//1為成功,0為失敗
if (info == 1)
System.out.println("應用服務器可用。");
else
System.out.println("應用服務器不可用,請檢查IP地址和端口是否正確。");
return info;
}
System.loadLibrary():裝載Windows\System32下或jre\bin或Tomcat\bin目錄下的本地鏈接庫
System.load():根據具體的目錄來加截本地鏈接庫,必須是絕對路徑
•備注
上面的示例工程,因為是例子,所以沒有大多的設計,只是實現了裝載DLL文件,調用DLL文件方法,返回信息.
JNative的詳細說明,請參考JNative的源程序和例子.
注意JVM只允許一個默認的ClassLoader來load native library,同時並不提供專門的API來unload一個loaded native library,所以在項目調試的時候,獨立啟動Web Server.