Following the question Connecting to the server which password contains "@" symbols using ftp protocol, the answer is right. URLEncoder encodes @ into %. But let's say password already contains % and I am not encoding it, then how URL class will get to know that password in not encoded one?
|
|
closed as not constructive by Jav_Rock, vstm, xdazz, Yan, Graviton Oct 6 '12 at 6:44
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The browser (or method that is parsing the FTP URL) is URL Decoding the password. So if you don't URL Encode the password and you pass a % it will attempt to decode it anyways and therefor won't work. The same thing applies to @ and :. This answer over on Super User includes more detailed proof that this is in fact what is happening (they inspected the raw TCP/IP traffic with Wireshark to see what was being passed). |
|||
|
|