Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
unclear question – Jigar Joshi Dec 6 '10 at 9:10
2  
Define "undecoded". There ain't no such thing as plain text. – Karl Knechtel Dec 6 '10 at 9:10
You need to use the same encoding as your OS. In Java that should be the default encoding. If you use that you should get the filename/paths as the OS sees them. – Peter Lawrey Dec 6 '10 at 9:22
I think you want the actual 8 bit byte values as they come off the hard drive, trivial in c or c++ but the Java team I work with failed to find a reliable method in Java – David Sykes Dec 6 '10 at 9:35
1  
@oldfat: Mistaken assumption there. Java is portable and has to work on Windows, where filenames are generally 16 bits unicode (UTF-16) codepoints (on both VFAT and NTFS). So you can't even say that there is an "undecoded" file name, let alone a byte[] – MSalters Dec 6 '10 at 9:50
show 3 more comments

3 Answers

up vote 0 down vote accepted

When I made the comment that in c/c++ it is trivial I meant that in my experience c and c++ rarely converts data without being told to, and you should get what you want by doing nothing.

To get the file name I'd expect you to have to iterater the contents of the folder. Two methods of doing this are to call FindFirstFile(), followed by FindNextFile

WIN32_FIND_DATA findData;
HANDLE findFile;
findFile = FindFirstFile (path, &findData);
FindNextFile (findFile, &findData);

or

wpath ourPath(pDirectory);
wdirectory_iterator endIter;
for (wdirectory_iterator iter(ourPath); iter != endIter; ++iter)
{
 pContents.push_back(iter->leaf());
}
share|improve this answer
I think you're right, thanks a lot. – oldfat Dec 6 '10 at 13:01

To the best of my knowledge, the standard Java API does not offer any way to retrieve the byte stream that the underlying OS uses as the "native" filename; all the APIs handle filenames as java.lang.Strings, hence in Unicode.

You can of course convert a String back to a byte[] using String.getBytes, but that will not give you the original representation. I guess the only way to get that is to use JNI and the OS-native filesystem API.

In practice, on Windows that would mean that you take your C/C++ code to get the file name, and invoke it via JNI to get the "real" filename.

share|improve this answer

Hard to tell what you really want to achieve. Usually, if we work with files, we do not get filenames but provide filenames to access files. A filename is a sequence of bytes which can be converted to a String following a given encoding.

To create a String in special encoding, use:

byte[] filenameBytes = getBytesFromWhereEver();
String filename = new String(filenameBytes, "UTF-8");

the example will encode the bytes to an UTF-8 String. But still you'll have to provide the filename or at least, it's bytes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.