String url = "http://10.10.10.103/a.mp4"; String path = android.os.Environment .getExternalStorageDirectory().getAbsolutePath() + "/ApdError"; DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI); request.setDestinationInExternalFilesDir(MainActivity.this, path, "a.mp4"); DownloadManager downloadManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE); downloadManager.enqueue(request);