├── DownLoadManager.java ├── DownLoadThread ├── DownloadThreadTask.java ├── README.md └── tuling ├── fileServer ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── tuling │ ├── Start.java │ ├── client │ └── DownloadClient.java │ └── controller │ └── DownLoadController.java └── pom.xml /DownLoadManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/DownLoadManager.java -------------------------------------------------------------------------------- /DownLoadThread: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DownloadThreadTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/DownloadThreadTask.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/README.md -------------------------------------------------------------------------------- /tuling/fileServer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/tuling/fileServer/pom.xml -------------------------------------------------------------------------------- /tuling/fileServer/src/main/java/com/tuling/Start.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/tuling/fileServer/src/main/java/com/tuling/Start.java -------------------------------------------------------------------------------- /tuling/fileServer/src/main/java/com/tuling/client/DownloadClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/tuling/fileServer/src/main/java/com/tuling/client/DownloadClient.java -------------------------------------------------------------------------------- /tuling/fileServer/src/main/java/com/tuling/controller/DownLoadController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/tuling/fileServer/src/main/java/com/tuling/controller/DownLoadController.java -------------------------------------------------------------------------------- /tuling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devyf/BurstDownload/HEAD/tuling/pom.xml --------------------------------------------------------------------------------