- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[JNI/NDK] How to convert Arraylist in java to lpwstr in c using jni 본문
[JNI/NDK] How to convert Arraylist in java to lpwstr in c using jni
드럼치는한동이 2013. 6. 14. 09:02// parameter
jobject YourJObjectRepresentingArrayList;
// I suppose you have the JNIEnv somehow
JNIEnv* env;
// use the Array list
ArrayList_class = env->FindClass( "java/util/ArrayList" );
// to conver jobject to jstring
jmethodID caster = env->GetMethodID(ArrayList_class, "toString", "()Ljava/lang/String;");
// get two methods
Get_method = env->GetMethodID( ArrayList_class, "get", "(I)Ljava/lang/Object" );
Size_method = env->GetMethodID( ArrayList_class, "size", "()I" );
// call java.lang.ArrayList.get()
int NumElts = env->CallIntMethod(YourJObjectRepresentingArrayList, ArrayList_class, Size_method);
// allocate output array
LPWSTR* Out = new LPWSTR[NumElts];
// fetch all the items
for(int i = 0 ; i < NumElts ; i++)
{
// call java.lang.ArrayList.get(int index) method
// Not sure about the parameter passing here
jobject Tmp = env->CallObjectMethod(YourJObjectRepresentingArrayList, Get_method, i);
jstring Str = (jstring)env->CallObjectMethod(Tmp, caster);
// get the length
int StrLen = env->GetStringLength(env, Str);
Out[i] = new wchar_t[StrLen];
const char* SourceUTF = env->GetStringChars(env, Str);
// store the string - not sure about UTF-16/UTF-8 here. It is OS-dependant.
// MultiByteToWideChar or iconv on POSIX
ConvertUTF8ToWChar(Out[i], SourceUTF);
env->ReleaseStringUTFChars(s, SourceUTF);
}
// done
'★─Programing > ☆─JNI | NDK' 카테고리의 다른 글
[JNI/NDK] JNI 간단 요약 (플랫폼 독립성을 버리고, 기능을 취한다) (0) | 2013.06.19 |
---|---|
[JNI/NDK] NDK로 제작할 때 C와 C++의 차이 (0) | 2013.06.14 |
[JNI/NDK] JNI Tutorial - Local and Global References (0) | 2013.06.04 |
[JNI/NDK] JNI string type 다루는 법 (0) | 2013.06.04 |
[JNI/NDK] JNI Tutorial - Exceptions (0) | 2013.05.31 |