You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Rory Winston (JIRA)" <ji...@apache.org> on 2010/03/08 13:11:27 UTC

[jira] Closed: (NET-240) FTPClient can't support Chinese or Japanese language in listFiles()

     [ https://issues.apache.org/jira/browse/NET-240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rory Winston closed NET-240.
----------------------------

    Resolution: Not A Problem

> FTPClient can't support Chinese or Japanese language in listFiles()
> -------------------------------------------------------------------
>
>                 Key: NET-240
>                 URL: https://issues.apache.org/jira/browse/NET-240
>             Project: Commons Net
>          Issue Type: Bug
>    Affects Versions: 2.0
>         Environment: Both Win and Linux,  jdk1.5 or jdk1.6
>            Reporter: Eisen Wang
>
> while coding as below:
> FTPClient ftp = new FTPClient();
> int reply;
> ftp.connect("10.110.13.18",2001);
> ftp.login("user","password");
> //  ... // transfer files
> ftp.type(FTPClient.ASCII_FILE_TYPE);
> FTPFile[] temp = ftp.listFiles();
> System.out.println(temp.length);
> for (int i = 0; i < temp.length; i++)
> {
> 	System.out.println(temp[i].getName());
> }; //filtered all the files
> if the remote ftp server has a Chinese or Japanese file, then it would print a massive text on screen.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.