我想通過打開一次FTP連接來優化性能。可以嗎?FTP連接性能java
我做的,
public void method1()
{
for(loop)
{
List li = someList;
method2(li); //Here I am calling this method in loop. This method has code for FTP connection. So for every iteration it is opening FTP connection in method2().
}
}
public void method2(List li)
{
open FTP connection // FTP connect code here
once FTP connection obtained ....do some other stuff...
}
感謝。
謝謝lynks。但是,當連接到FTP位置時,我必須提供一些文件名,它將存儲在FTP位置,如URL url = new URL(「ftp://」+ userName +「:」+ password +「@」+ hostName +「/ 「+ fileName +」; type = i「); //這裏是fileName。這對我來說每次都是動態的。那麼我如何才能在method2中的myFTPCon變量中獲得動態值? – user1565699 2012-07-31 14:48:34
看到我的編輯,新的代碼可以坐在它自己的源文件MyFTPClass.java中,並且可以在它旁邊運行程序。 – lynks 2012-07-31 14:55:04
再次感謝lynks。 – user1565699 2012-07-31 15:46:52