我使用的下载从web文件到我的Android设备DownloadManager
。 我节省了使用SD卡本文件:
DownloadManager.Request req = new DownloadManager.Request(Uri.parse("file path"));
req.setTitle("file title").setDescription("Downloading ....") // download the package at the /sdcard/download path.
.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "file name"+ "file extension");
我想把它保存到内部存储。 怎么做?