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

when dealing with non-english filename.

The problem is that my program cannot gurantee those directories and filenames are in English, if some filenames using japanese, chinese character it will display some character like '?'.

anybody can suggest me wat i need to do to access non english file name

share|improve this question
Which language and platform was that again? – Ignacio Vazquez-Abrams Nov 25 '10 at 9:12
4  
What exactly is your problem? You seem to be replacing the special characters, so what is the issue? – Neeme Praks Nov 25 '10 at 9:21
2  
I'll be blunt here. You havent exactly clarified what your program does and where is it having trouble. Is it having trouble displaying the filenames? If so, how is it displaying the filename? Is it a Swing application or a web application using Spring, JSF, Wicket etc? From the code that you've put, I can only infer that you are attempting to prevent the "special" characters from being displayed, which should not cause problems if you are eventually dealing with ANSI or ISO-8859-1 characters. – Vineet Reynolds Nov 25 '10 at 12:20
@vijay - I agree with @Vineet. Simply posting more code does NOT provide the kind of information we need. – Stephen C Nov 25 '10 at 13:05
What i exactly need to do is to access non english file name, my actual problem is am accessing pdf file from my outlook mail there is scheduler which runs on every 5 minutes and it checks whether is there any mail present in my mail inbox if yes then it checks is there any attachment with pdf extension, then it picks that mail and stores that pdf file in another folder, this actually working fine, problem is if that pdf file name contains any non english character schduler is not able to pick it,code i already pasted in my previous question – vijay Nov 26 '10 at 5:46
show 1 more comment

2 Answers

The problem is that my program cannot guarantee those directories and filenames are in English. If a filename use japanese, chinese characters it will display some character like '?'.

The problem is apparently that "it" is using the wrong character set to display the filenames. The solution depends on whether "it" is your program (via a GUI), some other application, the command shell / terminal emulator, or the user's web browser. If you could provide more information, maybe I could offer some suggestions.

But turning the characters into underscores is most likely a bad solution. It is liable to lead to filename clashes, and those Chinese / Japanese / etc characters are most likely meaningful to the people who created the files.

By the way, the correct term for "english" letters is Latin.

EDIT

For your use-case, you don't to store the PDF file using a filename that bears any relation to the supplied filename. I suggest that you try to solve the problem by using a filename consisting of Latin numbers and letters generated from (say) currentTimeInMillis(). If that fails, then your real problem has nothing to do with the filenames at all.

EDIT 2

You ask about the statement

if (fileName.startsWith("=?iso-8859")) 

This seems to be trying to unpick a filename in MIME encoded-word format; see RFC 2047 Section 2

Firstly, I think that code may be unnecessary. The javadoc is not specific, but I think that the Part.getFilename() method should deal with decoding of the filename.

Second, if the decoding is necessary, then you are going about it the wrong way. The stuff after the charset cannot simply be treated as the value of the filename. Look at the RFC.

Third, if you need to you should use the relevant MimeUtility methods to decode "word" tokens ... like the filename.

Fourthly, ISO-8859-1 is NOT a suitable encoding for characters in non-Latin character sets.

Finally, examine the raw email headers of the emails that you are trying to decode and look for the header line that starts

Content-Disposition: attachment; filename=...

If the filename looks like "=?iso-8859-1?...", and the filename is supposed to contain japanese / chinese / etc characters, then the problem is in the client (or whatever) that constructed the email. The character set needs to be "utf-8" or one of the other multibyte character sets.

share|improve this answer
yes stephen u r correct – vijay Nov 25 '10 at 11:38
am trying to access one pdf file which comes in my mail if this mail attached file name is with normal english it is working fine. but if it comes with non english my program is not able to read it, – vijay Nov 25 '10 at 11:41
my functionis like this – vijay Nov 25 '10 at 11:42
public static void saveAttachments( Part part, String strFolderName ) throws Exception { try { sFn_logFetchMailErrMsg( "saveAttachments(Part part, String strFolderName): Started", "INFO " ); sFn_logFetchMailErrMsg( "The file will be downloaded to " + strFolderName, "DEBUG" ); Multipart multipart = null; Part subPart = null; String strDisposition = part.getDisposition(); Object objContent = part.getContent(); – vijay Nov 25 '10 at 11:42
+1, this is absolutely correct. Java's String class will correctly store any Unicode characters without any special effort on the developer's part, so the only potential problem is a mismatch between the encodings of binary streams (either input or output). @vijay, I notice that you're not paying any attention to the charset when you read the content type, which has a good chance of causing this type of problem. – Andrzej Doyle Nov 25 '10 at 12:34
show 5 more comments

Java uses Unicode natively - you don't need to replace special characters, as Unicode has no special characters - every code point is treated equally. Your replaceSpChars() may be the culprit here.

share|improve this answer
my actuall problem is am accessing one pdf file which is present in my emai id, this is working fine when pdf is in english charcter. – vijay Nov 25 '10 at 11:33
but when that pdf comes with non english it is not reading file name itself – vijay Nov 25 '10 at 11:34
i have pasted exact method in this tag please check this and give me suggestion – vijay Nov 25 '10 at 11:51
how access file name with non english unicode problem – vijay Nov 25 '10 at 11:52
What i exactly need to do is to access non english file name, my actual problem is am accessing pdf file from my outlook mail there is scheduler which runs on every 5 minutes and it checks whether is there any mail present in my mail inbox if yes then it checks is there any attachment with pdf extension, then it picks that mail and stores that pdf file in another folder, this actually working fine, problem is if that pdf file name contains any non english character schduler is not able to pick it,code i already pasted in my previous question – vijay Nov 26 '10 at 5:48
show 2 more comments

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.