读书人

FtpUtil ftp工具种 过滤文件名

发布时间: 2012-12-25 16:18:28 作者: rapoo

FtpUtil ftp工具类 过滤文件名

工具类:

?

?

?过滤:

?

?

下载速度提升

?

public boolean downloadFile(String srcFileName, File targetFileName){//.....//下载速度太慢,用如下方式进行提升                        byte[] recvbuf = new byte[1024];while((ch = dis.read(recvbuf)) > 0){getFile.write(recvbuf,0,ch);}//while (true) {//ch = dis.read();//if (ch < 0) {//break;//}//getFile.write(ch);//}//...}
?

?

?

读书人网 >编程

热点推荐