我正在使用DownloadManager
将文件从网络下载到我的Android设备。我使用以下方法在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");
我想将其保存到内部存储中。怎么做?
答案 0 :(得分:1)
使用此路径.setDestinationInExternalPublicDir(Environment.getExternalStorageDirectory()
+"/Android/data/xxx.xxx.xxx/files/")