[
https://issues.apache.org/jira/browse/CB-210?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Takashi Okamoto updated CB-210:
-------------------------------
Description:
File name is broken hen file name include multibyte character.
As far as I check the code,
FileTransfer.java may have problem.
dos.writeBytes("Content-Disposition: form-data; name=\"" + fileKey + "\";" + "
filename=\"" + fileName + "\"" + LINE_END);
It must new String(filename.getBytes("UTF-8"), "ISO-8859-1") and it works fine.
regards,
Takashi Okamoto
was:
File name is broken hen file name include multibyte character.
As far as I check the code,
FileTransfer.java may have problem.
dos.writeBytes("Content-Disposition: form-data; name=\"" + new
String(fileKey.getBytes("UTF-8"),"ISO-8859-1") + "\";" + " filename=\"" + new
String(fileName.getBytes("UTF-8"),"ISO-8859-1") + "\"" + LINE_END);
Should it be filename.getBytes("utf-8")? fileKey also same problem.
regards,
Takashi Okamoto
> Fileupload is broken for multibyte filename
> -------------------------------------------
>
> Key: CB-210
> URL: https://issues.apache.org/jira/browse/CB-210
> Project: Apache Callback
> Issue Type: Bug
> Components: Android
> Affects Versions: 1.3.0
> Reporter: Takashi Okamoto
> Assignee: Joe Bowser
>
> File name is broken hen file name include multibyte character.
> As far as I check the code,
> FileTransfer.java may have problem.
> dos.writeBytes("Content-Disposition: form-data; name=\"" + fileKey + "\";" +
> " filename=\"" + fileName + "\"" + LINE_END);
>
> It must new String(filename.getBytes("UTF-8"), "ISO-8859-1") and it works
> fine.
> regards,
> Takashi Okamoto
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira