首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

FtpUtil ftp工具种 过滤文件名

2012-12-25 
FtpUtilftp工具类 过滤文件名工具类:???过滤:??下载速度提升?public boolean downloadFile(String srcFile

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);//}//...}
?

?

?

热点排行