我有一个可以下载的文件 URL。它看起来像这样:
http://<server>/recruitment-mantis/plugin.php?page=BugSynchronizer/getfile&fileID=139&filehash=3e7a52a242f90c23539a17f6db094d86
如何获取此文件的内容类型?我必须管理在这种情况下很简单:
URL url = new URL(stringUrl);
URLConnection urlConnection = url.openConnection();
urlConnection.connect();
String urlContent = urlConnection.getContentType();
在每个文件中返回我application/force-download
的内容类型(无论是 jpg 还是 pdf 文件)。我想这样做是因为我想设置下载文件的扩展名(可以是各种)。如何“绕过”这种application/force-download
内容类型?在此先感谢您的帮助。