我在android中使用DownloadManager API成功下载了pdf文件。
正确设置了清单权限。 文件正确下载。
但是当它被试图打开它时说"无法打开文件"。
请帮助打开下载的文件。我想我没有为文件设置正确的名称和扩展名。如何设置?
private void DownloadBook(String url, String title){
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
//request.setDescription("Some descrition");
String tempTitle = title.replace(" ","_");
request.setTitle(tempTitle);
// in order for this if to run, you must use the android 3.2 to compile your app
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
}
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, tempTitle+".pdf");
// get download service and enqueue file
DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
request.setMimeType(".pdf");
request.allowScanningByMediaScanner();
request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_MOBILE | DownloadManager.Request.NETWORK_WIFI);
manager.enqueue(request);
}
答案 0 :(得分:5)
问题解决了。问题在于为下载的文件设置MIME类型。默认情况下,通过谷歌搜索,服务器将文件作为其内容类型发送为application / x-download而不是application / pdf。所以在设置mime类型为pdf。
我将此request.setMimeType(".pdf");
更改为request.setMimeType("application/pdf");
是的。
答案 1 :(得分:0)
request.setMimeType()用于Kotlin上不同类型的文件,如果“无法打开文件” android DownloadManager
val downloadFile = download // for example text.txt, text.xml, icon.jpg...
request.setMimeType(getMimeFromFileName(downloadFile))
private fun getMimeFromFileName(fileName: String): String? {
val map = MimeTypeMap.getSingleton()
val ext = MimeTypeMap.getFileExtensionFromUrl(fileName)
return map.getMimeTypeFromExtension(ext)
}