2012-05-02 209 views
-1

打印目錄我在打印的問題,從我使用網絡共享的Apache API如何從FTP服務器

FtpClient ftpclient=new FtpClient(); 
ftpclient.connect("garbo.uwasa.fi"); 
System.out.println("this is reply code"+ftpclient.getReplyCode()); 

最後這句話給replycode = 220

String workingdirectory=ftpclient.printWorkingDirectory(); 

在FTP服務器上的目錄printdirectory我得到null。可能是什麼問題呢?

+0

你確定你的ftp目錄不需要某種認證嗎? –

+1

下面是如何連接到ftp目錄的示例:http://www.kodejava.org/examples/357.html –

+0

嘿aki我解決了這個問題。連接後需要認證。 – itechDroid

回答

1
FtpClient client=new FtpClient(); 
clent.connect("www.ftpserver.com"); 
clent.login("username","password"); 
String workingdirectory=ftp.printWorkingDirectory(); 
this working code so u can access ftp server by using this