Hi,
I have a situation wherein i need to support foriegn languages, e.g file names in french, that need to be passed to a native function (C) using jni, where i will be doing all kinds of operations on these files, e.g stat, ioctl, open etc.
I tried out the jni function GetStringUTFChars to get the file names in UTF format but this doesnt work for all files.
Is there a jni function that will do a conversion of all the known characters in UNICODE to the underlying platform (e.g linux) so that basic file system operations can be done on these converted files?
Thanks in advance,
austraind.