All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.jfunc.common.ftp.another.DownloadStatus Maven / Gradle / Ivy

Go to download

http客户端请求工具类,有多种实现:OKHttp3、ApacheHttpClient、HttpURLConnection,可以随意切换http实现

There is a newer version: 1.8.2.0
Show newest version
package top.jfunc.common.ftp.another;

public enum DownloadStatus {

        /**
         * 下载文件成功
         */
        DownloadNewSuccess,
        /**
         *下载文件失败
         */
        DownloadNewFailed,
        /**
         *本地文件大于远程文件
         */
        LocalFileBiggerThanRemoteFile,
        /**
         *断点续传成功
         */
        DownloadFromBreakSuccess,
        /**
         *远程文件不存在
         */
        RemoteFileNotExist,
        /**
         *断点续传失败
         */
        DownloadFromBreakFailed;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy