공감 무대 위치로그  |  태그  |  방명록
Java 에 해당하는 글1 개
2006/08/25   JNI 테스트 소스 자료 입니다. (20)


JNI 테스트 소스 자료 입니다.
프로그래밍/Java | 2006/08/25 11:32
목적 : C, C++ 과 연동 하기 위한 java interface

테스트 환경
    • VM: jdk1.4
    • C compiler : gcc
  • Hello.java source

    package test;
    import java.io.*;

    public class Hello
    {
      public native String helloworld(String name); // C 프로그램으로 부터 호출할 메소드명

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

      public static void main(String args[])
      {
          Hello h = new Hello();
          System.out.println(h.helloworld("파이 짱"));
      }
    }

    컴파일 하기
     

    [sun:/export/home/pioneer/jni/HelloJni]javac -d . Hello.java

    c 와 interface 할 Header 파일 만들기

    [sun:/export/home/pioneer/jni/HelloJni]javah -jni Hello
    [sun:/export/home/pioneer/jni/HelloJni]ls *.h
    NativeStringUtil.h  - 한글처리를 위한 파일
    test_Hello.h        - Jni 를 위한 Header 파일  package명_클래스명
    [sun:/export/home/pioneer/jni/HelloJni]

    Header 파일

[sun:/export/home/pioneer/jni/HelloJni]more test_Hello.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class test_Hello */

#ifndef _Included_test_Hello
#define _Included_test_Hello
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class:     test_Hello
* Method:    helloworld
* Signature: (Ljava/lang/String;)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_test_Hello_helloworld
  (JNIEnv *, jobject, jstring);

#ifdef __cplusplus
}
#endif
#endif

C source hello.c 파일
#include <jni.h>
#include "test_Hello.h"
#include "NativeStringUtil.h"

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

JNIEXPORT jstring JNICALL
Java_test_Hello_helloworld(JNIEnv *env, jobject obj, jstring str)
{
   char buf[1024];
   char *cstr;

   cstr = jbyteArray2cstr( env, javaGetBytes(env, str) );
   sprintf(buf, "%s:%s", cstr, "반가워요 이건 C함수에서 넘겨준 겁니다.");

   return javaNewString( env, cstr2jbyteArray(env, buf));
}

C 파일 compile 하기
gcc -I/usr/j2se/include -I/usr/j2se/include/solaris -G -o libhello.so hello.c NativeStringUtil.c

실행하기
[sun:/export/home/pioneer/jni/HelloJni]java -Djava.library.path=./ test.Hello
반가워요 이건 C함수에서 넘겨준 겁니다.
[sun:/export/home/pioneer/jni/HelloJni]

태그 : Java, JNI
트랙백1 | 댓글20
이 글의 관련글(트랙백) 주소 :: http://www.pioneer.pe.kr/trackback/40
Tracked from Wicked Weasel Bikini Archive 2008/07/02 16:16 x
제목 : Wicked Weasel Bikini Archive
Girls Bravo Second Season Rapidshare <a href="http://yuadouahityk6362008.blogspot.com/">Girls Bravo Second Season Rapidshare</a> Teens Beach Girls <a href="http://xuvoua6272008.blogspot.com/">Teens Beach Girls</a>
Get Ip Address Of Party Poker 2006/12/19 19:04 L R X
Just thought I'd make a note about a problem :(
Do Sleep Medications Event The Pineal Gland 2006/12/21 18:16 L R X
Well at last catched the problem...
Success Stories From Xenical 2006/12/21 19:35 L R X
That is strange...
How To Buy Foreclosed Home 2006/12/22 05:40 L R X
Thanks. Updated appropriately...
Bonus Code Party Poker Sign Up 2006/12/22 14:28 L R X
Thanks for the write-up :)
design for six sigma 2007/07/22 20:49 L R X
아주 좋은 위치 나는 그것을 감사 좋아한다!
hoochies 2007/10/18 04:40 L R X
그런 경이롭 위치를 위해 많게의 감사!
gay cum movie 2007/10/20 05:16 L R X
관심을 끌. 너가 동일할 좋을 지점을 다시 배치할 것 을 나는 희망한다.
eat shit and die 2007/11/08 08:14 L R X
우수한 일! 감사!
face girl nice 2007/11/08 16:25 L R X
너는 아주 좋은 보는 위치가 있는다!
free game interactive porn 2007/11/09 00:36 L R X
좋은 위치는 그것 찾아본 즐겼다!
dick shawn 2007/11/09 08:47 L R X
나의 친구는 너의 위치의 현재 팬이 되었다!
melinda nude real world 2008/01/13 02:59 L R X
친구는 너의 위치의 현재 팬이 되었다!
fat hairy cunt 2008/01/13 11:15 L R X
좋은 위치! 너를 감사하십시요.
pedo boy 2008/01/13 20:20 L R X
너는 우수한 위치가 있는다!
bald pussy fuck 2008/01/14 05:44 L R X
너의 위치를 방문한 즐기는!
welsh terrier dog 2008/03/13 06:08 L R X
너는 아름다운 웹사이트가 있는다!
round and brown porn 2008/03/13 06:59 L R X
너는 차가운 위치를 만들었다!
free porn underground video 2008/03/13 07:55 L R X
너는 우수한 위치가 있는다!
hot lead mlm 2008/03/13 08:46 L R X
친구는 너의 위치의 현재 팬이 되었다!

아이디 :
비밀번호 :
홈페이지 :
  비밀글로 등록
내용 :
 



[PREV] [1] [NEXT]
관리자  |   글쓰기
BLOG main image
파이 홈페이지 입니다
전체 (41)
최근IT (0)
좋은생각 (0)
프로그래밍 (5)
Unix (2)
DBMS (4)
사진 (18)
레포츠 (0)
추천도서 (5)
WAS (0)
캠핑 (1)
JNI 여행 Unix 마케팅 struts 진원 CEO 무주 자녀 교육 Spring DERBY 캠핑 책 이야기 자녀 오리 일출 Ruby Java 풍경사진 책읽기 강원도 출사 ibatis log4sql strtus 2 Oracle Ruby on Rails vi 사진
무주 덕유대 캠핑장(2번째캠핑)
Eclipse RCP 참고 사이트
오라클 table 사용자 type 정보
ibatis에 log4j 바인딩하기
Struts2 시작하기
귀엽구 이쁘네여
2009 - montreal flower delivery
중대한 위치 축하!경이롭 위치!
2008 - cbs csi episode full
우수한 일! 감사!
2008 - bondage self
좋은 위치는 그것 찾아본 즐겼..
2008 - wife suck stripper
좋은 위치! 너를 감사하십시요.
2008 - pierced clit
32d Tit Size
32d Tit Size
Hustler And Oscar Nominee
Hustler And Oscar Nominee
Nurse Anesthestist
Nurse Anesthestist
Twilight Lexicon
Twilight Lexicon
Catz Club Pussy Swing
Catz Club Pussy Swing
Total : 41507
Today : 0
Yesterday : 23
태터툴즈 배너
rss
 
 
 
위치로그 : 태그 : 방명록 : 관리자
권낙주’s Blog is powered by Tattertools.com / Designed by plyfly.net