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