[开发心得]java ftp上传中文问题

环境: 服务端 vsftp server

客户端 apache common net4 + pool2 连接池

关键的要点在于, ftp server 的默认传输协议,字符集为:ISO-8859-1, 在确保服务器的本地字符集默认 en_US.UTF-8 字符集

在调用ftpClient.storeFile方法时候,确保fileUrl已经被转成8859-1

utf-8->8859-1

String ftpFileName = new String(targetName.getBytes(), StandardCharsets.ISO_8859_1);

storeFile

ftpClient.storeFile(fileName, inputStream);

posted @ 2022-04-02 18:58  虹梦未来  阅读(8)  评论(0编辑  收藏  举报  来源