Jsp中調用DLL(使用JNI)

來源:互聯網
上載者:User

我的環境: --------

1. java編譯器:MyEclipse 5.5

2. web伺服器: tomcat 5.5

3. C編譯器: VC++6.0

4. 作業系統: winxp

5. java源檔案目錄: d:/study/src

 6. java編譯後的class檔案目錄: d:/study/bin

7. tomcat目錄: d:/tomcat41

1.編寫java檔案: //Util.java

package com.jni;public class Util {public native static int add(int x,int y);static{System.loadLibrary("Util");}}

編譯這個檔案,產生Util.class檔案.

2.產生對應的標頭檔: 開啟一個dos視窗,進入存放class檔案的目錄:

在編譯class檔案時一定要在最頂級包外,在類名上要把包名加上javah com.jni.Util d:/>cd d:/study/bin d:/study/bin/>javah com.jni.Util

這樣,會在d:/study/bin目錄下產生com_jni_Util.h檔案.

3. 編寫c檔案: 在VC++6.0中:File->New->Projects->Win32 Dynamic-link Library,Project name 為Util, 建立一個empty DLL project. 把2所產生的com_jni_Util.h檔案和C:/j2sdk1.4.2/include目錄下的jni.h, C:/j2sdk1.4.2/include/win32目錄下的jni_md.h複製到Util工程目錄下. (C:/j2sdk1.4.2為我的jsdk的安裝路徑).

在Util工程中建立一個c源檔案,名為Util.c. //Util.c #include "com_jni_Util.h"

JNIEXPORT jint JNICALL Java_com_jni_Util_add (JNIEnv *env, jclass jc, jint x, jint y) {     return x+y; }

4. 產生Util.dll: 編譯3中的Util.c檔案後,會產生Util.dll檔案. /********************************************************************** 如果有如下錯誤: fatal error C1083: Cannot open include file: 'jni.h': No such file or directory/jdk/include/jni.h /jdk/include/win32/jawt_md.h /jdk/include/win32/jni_md.h 複製到Visual Studio.net的安裝目錄下的/Vc7/include目錄中 ***********************************************************************/

5. 產生jar包: 把Util.class檔案打成jar包,名為myutil.jar.

6. 編寫jsp檔案: //test.jsp <%@ page import="com.jni.Util" %>

<html> <head></head>

<body> <h3>5+7=<%=Util.add( 5, 7 )%></h3> </body> </html>

7. 把myutil.jar包複製到d:/tomcat41/common/lib目錄下;    把Util.dll檔案複製到d:/tomcat41/bin目錄下(也可以是環境變數path的所設定的任何一個目錄下);    把test.jsp複製到d:/tomcat41/webapp/test目錄下.

8. 啟動tomcat.

9. 在ie中輸入: http://localhost:8080/test/test.jsp.    如果你能看到: 5+7=12 就成功了.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.