I have a file name with Japanese characters. file name: S-最終条件.pdf. In Java, file name: S-最終条件.pdf.
// Support for Japanese file name
fileNameX = new String(fileName.getBytes("Shift_JIS"),"ISO8859_1");
The output fileNameX is coming out S?最終条件.pdf. Hence it is throwing an error. I am trying to outstream the file in PDF format, but the particular Japanese character "-" is not recognised and it is throwing error while streaming.
Please help me solve this issue.
Thanks, Prasanna
UTF-8instead ofISO8859-1. – Shashank_Itmaster Mar 3 '11 at 5:31fileNamewith one charset and decoding with another. I really don't see the point of this. Why can't you just work withfileNamedirectly? – ide Mar 3 '11 at 7:00