×

java读dll文件

java读dll文件(java读取dll文件)

admin admin 发表于2023-03-24 19:19:08 浏览55 评论0

抢沙发发表评论

本文目录一览:

如何在java中调用.dll文件,详细点带上代码这些辣

首先下截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读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文件方法,返回信息.

注意JVM只允许一个默认的ClassLoader来load native library,同时并不提供专门的API来unload一个loaded

native library,所以在项目调试的时候,独立启动Web Server.

JAVA调用c++的dll文件

通过一个外部的JAR包来间接来获得DLL文件的句柄 的,它就是jacob了,这是java com brige的简写,呵呵, 这个名称起得非常形象吧,我用的版本是jacob 1.9的,你可以到它的官方网站去下载,下载回来的压缩包中会有两个文件我们需要用到的,一个是jacob.dll,一个是jacob.jar,jacob.dll可以将它复制到系统的system32目录下,而jacob.jar文件,直接将它加入到项目的库中就可以了。这两项准备工作完成后,就可以开始尝试调用了。-java读dll文件

新建一个类,引入jacob.jar中的两个类,

import com.jacob.activeX.ActiveXComponent;

import com.jacob.com.Dispatch;

然后通过dll的ControllerId来读取DLL文件

public class Print {

private ActiveXComponent printController = null;

private Dispatch printObj = null;/*** 默认controllerId的方法*/public Print(){try{printController = new ActiveXComponent(POSControler.Controler);-java读dll文件

printObj = (Dispatch)printController.getObject();

}catch(Exception e){

printObj = new Dispatch();

如果方法dll中的方法是空参数时,直接call一下就可以了,如

Dispatch.call(printObj,setDefaultFont);而调用有参数的方法时,则需要将参数在后面依次传入

Java如何调用本地dll库里面的方法

JAVA通过JNI调用本地方法,而本地方法是以库文件的形式存放的(在WINDOWS平台上是DLL文件形式,在UNIX机器上是SO文件形式)。通过调用本地的库文件的内部方法,使JAVA可以实现和本地机器的紧密联系,调用系统级的各接口方法。-java读dll文件

简单介绍及应用如下:

一、JAVA中所需要做的工作

在JAVA程序中,首先需要在类中声明所调用的库名称,如下:

static {

System.loadLibrary(“goodluck”);

}

在这里,库的扩展名字可以不用写出来,究竟是DLL还是SO,由系统自己判断。

还需要对将要调用的方法做本地声明,关键字为native。并且只需要声明,而不需要具 体实现。如下:

public native static void set(int i);

public native static int get();

然后编译该JAVA程序文件,生成CLASS,再用JAVAH命令,JNI就会生成C/C++的头文件。

例如程序testdll.java,内容为:

public class testdll

{

static

{

System.loadLibrary("goodluck");

}

public native static int get();

public native static void set(int i);

public static void main(String[] args)

{

testdll test = new testdll();

test.set(10);

System.out.println(test.get());

}

}

用javac testdll.java编译它,会生成testdll.class。

再用javah testdll,则会在当前目录下生成testdll.h文件,这个文件需要被C/C++程序调用来生成所需的库文件

java加载dll文件

java没法直接读,只能先用C++写一个读取该dll内容的过程,按JNI规范封装成dll,然后java加载这个dll执行其中的函数。