小弟想实现如下功能:
用c++写一个des加密程序,编译成dll,供java调用,
然后写一个java类,来调用dll。
有jni技术高手知道如何实现吗?
------解决方案--------------------
1.写一个java类,该类包含了需要调用的本地方法的描述,如:
package com.jose
public class Test {
public native long method1(String mess);
public native long method2(String mess);
static {
System.loadLibrary("TestImp");
}
}
其中TestImp.dl文件放在windows安装目录的system32下面,同时设置好classpath(.)
注意:一般情况下java类有放在包里和没有包两种情况。
2.提示符下使用命令javac -d . Test.java 编译上面写的java文件。
此时会生成相应的包的目录结构,并生成Test.class文件。
3.提示符下使用命令javah -jni com_jose_Test,此时会在当前目录下生成文件com_jose.Test.h文件,该文件是由包名+类名组成,中间用分隔符(_)隔开。
4.使用VC来编写本地方法的实现函数,最后编译成.dll文件
①选择new->projects(选择Win32 Dynamic-Link Library,以第一步中指定的库名TestImp作为工程名)->OK->An ampty DLL project->Finish
②选择Tools->Options->Directories 添加JNI所需的头文件
③将第三步生成的com_jose_test.h文件拷贝到TestImp工程中,并将其添加到TestImp.cpp的头文件中
注意事项说明:
㈠我们知道DLL有两种导出函数的方法,一种就是在.def文件中定义,另一种是在定义函数时使用关键字_declspec(dllexport)。而在JNI中函数定义关键字JNIEXPORT实际就在jni_md.h中如下定义:
#define JNIEXPORT_declspec(dllexport)
可见JNI默认的导出方式为第二种。使用第二种方式产生的导出函数名会根据编译器发生变化,在有的情况下会发生找不到导出函数的问题(我们在JSP中调用JNI的时候就发生这样的问题,后来强加一个.def文件重新导出函数就解决了)。因此最好还是自己定义个.def文件,强制导出的方法比较好点。
㈡根据本列,写一个TestImp.def文件,如下:
LIBRARY "TestImp"
DESCRIPTION 'ImageConvertDll Windows Dynamic Link Library'
EXPORTS;
Explicit exports can go here
Java_com_jose_Test_method1
Java_com_jose_Test_method2
最后生成dll文件
------解决方案--------------------
以下是我做的一个简单的文件加密的dll。
1:编写 java
public class FileCode {
/**
* @param args
*/
public native boolean ecfile(String fileath, String password);
public native boolean dcfile(String fileath, String password);
static {
System.loadLibrary("FileCode");
}
public static void main(String[] args) {
// TODO Auto-generated method stub
FileCode test = new FileCode();
System.out.print(test.ecfile("C:\\temp\\1234.html", "12345"));
//System.out.print(test.dcfile("C:\\temp\\1234.html", "12345"));
}
}
2:编译java 文件
3: set java_home=C:\Program Files\Java\jdk1.6.0_11
set path=%java_home%\bin
set class_path=%java_home%\lib;%java_home%\lib\dt.jar;%java_home%\lib\tools.jar
javah -jni cn.common.FileCode
@pause
(上可做成bat)
4:写c++我是用VC++做的
头文件:
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: cn_common_FileCode
* Method: ecfile
* Signature: (Ljava/lang/String;Ljava/lang/String;)Z
*/
JNIEXPORT jboolean JNICALL Java_cn_common_FileCode_ecfile
(JNIEnv *, jobject, jstring, jstring);
/*
* Class: cn_common_FileCode
* Method: dcfile
* Signature: (Ljava/lang/String;Ljava/lang/String;)Z
*/
JNIEXPORT jboolean JNICALL Java_cn_common_FileCode_dcfile
(JNIEnv *, jobject, jstring, jstring);
bool fiedecode(char * filepath,char * filecod);
__int64 epass(char *password);
__int64 m_password;
char* jstringToWindows( JNIEnv* env, jstring jstr ) ;
#ifdef __cplusplus
}
#endif
#endif
5:CPP文件
#include "FileCode.h"
#include <stdlib.h>
#include <stdio.h>
#include "stdafx.h"
/*
* Class: cn_common_FileCode
* Method: ecfile
* Signature: (Ljava/lang/String;Ljava/lang/String;)Z
*/
JNIEXPORT jboolean JNICALL Java_cn_common_FileCode_ecfile
(JNIEnv *ev, jobject obj, jstring filepath, jstring password){
char *data;
CFile *file;
DWORD flen;
__int64 m_password;
m_password = epass(jstringToWindows(ev,password));
LPCTSTR fpath = jstringToWindows(ev,filepath);
file = new CFile;
if ( !file->Open(fpath, CFile::shareDenyNone|CFile::modeReadWrite))
{
return FALSE;
}
flen = file->GetLength();
data = new char[(int)flen];
file->SeekToBegin();
file->Read(data, flen);
for(int i=0; i<(int)flen; i++)
{
data[i] ^= m_password;
data[i] ^= flen;
}
file->SeekToBegin();
file->Write(data, flen);
delete[] data;
//添加密码验证信息
char cpass[5] = "love";
for(int j=0; j<5; j++)
{
cpass[j] ^= m_password;
}
file->SeekToEnd();
file->Write(&cpass, 5);
file->Close();
delete file;
return TRUE;
}
/*
* Class: cn_common_FileCode
* Method: dcfile
* Signature: (Ljava/lang/String;Ljava/lang/String;)Z
*/
JNIEXPORT jboolean JNICALL Java_cn_common_FileCode_dcfile
(JNIEnv *ev, jobject obj, jstring filepath, jstring password){
char *data;
CFile *file;
DWORD flen;
char love[5];
LPCTSTR fpath = jstringToWindows(ev,filepath);
file = new CFile;
if( !file->Open(fpath, CFile::shareDenyNone|CFile::modeReadWrite))
{
return FALSE;
}
flen = file->GetLength();
data = new char[(int)flen];
file->Seek(-5, CFile::end);
file->Read(&love, 5);
m_password = epass(jstringToWindows(ev,password));
for(int i=0; i<5; i++)
{
love[i] ^= m_password;
}
if(strcmp(love, "love")!=0)
{
return FALSE;
}
file->SeekToBegin();
file->Read(data, flen);
for(int j=0; j<(int)flen; j++)
{
data[j] ^= m_password;
data[j] ^= (flen-5);
}
file->SeekToBegin();
file->Write(data, flen);
file->SetLength(flen-5);
file->Close();
delete[] data;
delete file;
return TRUE;
}
__int64 epass(char *password)
{
DWORD plen;
char *ppass;
__int64 mc= 8757735233305;
ppass = password;
plen = strlen(ppass);
for(int i=0; i<(int)plen; i++)
{
mc ^= ppass[i]|128;
}
return mc;
}
char* jstringToWindows( JNIEnv* env, jstring jstr )
{
int length = env->GetStringLength(jstr);
const jchar* jcstr = env->GetStringChars( jstr, 0 );
char* rtn = (char*)malloc( length*2+1 );
int size = 0;
size = WideCharToMultiByte( CP_ACP, 0, (LPCWSTR)jcstr, length, rtn,
(length*2+1), NULL, NULL );
if( size <= 0 )
return NULL;
env->ReleaseStringChars( jstr, jcstr );
rtn[size] = 0;
return rtn;
}