Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 apache FTPClient,它不接受带有特殊字符的密码。密码中有一个@符号。我正在使用以下代码:
FTPClient fc = new FTPClient(); fc.connect(url); fc.login(username, password);
这给了我 UnknownHostException。
有谁知道如何解决这个问题?
谢谢!