GetStringLength

Prototypes

jsize JNIEnv::GetStringLength(jstring ObjetChaine);

Description

Lit la taille d'un objet de type String désigné par ObjetChaine en nombre de caractères.

Exemple

#include <jni.h>

JNIEnv *pEnv;
jstring pMaChaine;
jsize Taille;

...
Taille=pEnv->GetStringLength(pMaChaine);
...

Avertissement

Néant.

Voir aussi

GetStringChars pour retrouver la valeur d'une chaîne de caractères.
ReleaseStringChars pour libérer la valeur chaîne de caractères.