Appach FTPClient 遍历服务器目录文件,文件名奇数中文乱码 UTF-8 GBK ISO-8859-1

用以下的代码,遍历服务器目录中的文件名,如果文件名为中文,且中文个数为奇数,则必会出现乱

                ftpClient.setControlEncoding("GBK");//设置编码集为GBK支持中文
                FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_UNIX);
                conf.setServerLanguageCode("zh");
                ftpClient.configure(conf);
                ftpClient.connect(ip, port);
                ftpClient.login(username, password);
                ftpClient.enterLocalPassiveMode();//设为被动模式
                ftpClient.setFileType(FTP.BINARY_FILE_TYPE); //不设为二进制传送模式,会收不到0x0D
                String tmpRemotePath= new String(remotePath.getBytes("UTF-8"),"GBK");
                System.out.println(ftpClient.changeWorkingDirectory(tmpRemotePath));
                FTPFile[] files1 = ftpClient.listFiles(ftpClient.printWorkingDirectory());
                int k = 0;                 
                for (k = 0; k < files1.length; k++) {
                    String fileName = new String(files1[k].getName().getBytes("GBK"), "UTF-8");
                    System.out.println(fileName);
                }


解决的方式:将GBK改为ISO-8859-1

               ftpClient.setControlEncoding("ISO-8859-1");//设置编码集为GBK支持中文
                FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_UNIX);
                conf.setServerLanguageCode("zh");
                ftpClient.configure(conf);
                ftpClient.connect(ip, port);
                ftpClient.login(username, password);
                ftpClient.enterLocalPassiveMode();//设为被动模式
                ftpClient.setFileType(FTP.BINARY_FILE_TYPE); //不设为二进制传送模式,会收不到0x0D 
                String tmpRemotePath= new String(remotePath.getBytes("UTF-8"),"ISO-8859-1");
                System.out.println(ftpClient.changeWorkingDirectory(tmpRemotePath));
                FTPFile[] files1 = ftpClient.listFiles(ftpClient.printWorkingDirectory());
                int k = 0;                 
                for (k = 0; k < files1.length; k++) {
                    String fileName = new String(files1[k].getName().getBytes("ISO-8859-1"), "UTF-8");
                    System.out.println(fileName);
                }


理论依据,参考:http://www.myexception.cn/program/859464.html

你可能感兴趣的:(Appach FTPClient 遍历服务器目录文件,文件名奇数中文乱码 UTF-8 GBK ISO-8859-1)