package com.explib.fdm; public class Main { public static void main(String[] args) throws Exception { DownloadManager downloadManager=new DownloadManager("http://lg-tok.fdcservers.net/10GBtest.zip",4); System.out.println("开始下载..."); downloadManager.downloadFileByThreads("D:/a.zip"); while(true){ if(downloadManager.isDone()){ System.out.println("完成!"); break; }else{ System.out.println("已下载:"+downloadManager.getDownloadedBytes()+" KB"); Thread.sleep(1000); } } } }