Could somebody please give me some tips about how to get undecoded byte[] of filename? I want to do the decoding myself. I have traced java src code, but I am blocked by native function. Thanks a lot!
I mean I want the original byte[] of filename, not convert it to a string and then convert it back. This may cause some filename using native encoding but not unicode to lose its original bytes. JAVA always give me the filename decoded by unicode and I do not want it.
I am assuming I have to handle some files from somewhere, and I do not exactly know the encoding they use. However, I just do not want the system to do decoding for me. I want to decide myself which kind of decoding should be used. So I need the original byte[] of filename.
Solution in C/C++ is also appreciated.
byte[]– MSalters Dec 6 '10 at 9:50