URL中的文件名不包含文件名后缀

时间:2012-10-28 13:25:38

标签: java android http url filenames

我需要从URL下载文件,除了我不知道文件的类型和我使用的URL在其末尾没有/random.file所以我无法解析文件名的url。 目前我正在使用Android下载管理器,它运行很好,意味着我没有处理下载,但我无论如何都看不到它下载的文件中的文件名。如果我在Firefox中加载相同的URL,例如它询问'下载文件:Nameoffile.extension'。

在我下载文件之前,有没有办法让我复制此行为并获取文件名?

2 个答案:

答案 0 :(得分:2)

最好在响应中读取HTTP Content-Type标头并确定它是什么类型的文件。文件扩展名不保证文件的类型。如果您具体了解文件名,Content-Disposition: attachment; filename="fname.ext"是另一种方法。有关详细信息,请查看list of HTTP headers

答案 1 :(得分:2)

我最终使用ASyncTask手动检索文件名并将其传递给下载管理器,如果它可以帮助任何人这就是我的方式(我的网址在实际文件下载之前经历了多次重定向): / p>

class GetFileInfo extends AsyncTask<String, Integer, String>
{
    protected String doInBackground(String... urls)
    {
                URL url;
                String filename = null;
                try {
                    url = new URL(urls[0]);
                HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                conn.connect();
                conn.setInstanceFollowRedirects(false); 

                try {
                    for(int i = 0; i < 10; i++)
                    {
                        url = new URL(conn.getHeaderField("Location")); 
                        conn = (HttpURLConnection) url.openConnection();
                        conn.connect();
                        conn.setInstanceFollowRedirects(false);
                    }
                } catch (Exception e) {
                }

                String depo = conn.getHeaderField("Content-Disposition");
                String depoSplit[] = depo.split(";");
                int size = depoSplit.length;
                for(int i = 0; i < size; i++)
                {
                    if(depoSplit[i].startsWith("filename="))
                    {
                        filename = depoSplit[i].replace("filename=", "").replace("\"", "").trim();
                        Global.error(filename);
                        i = size;
                    }
                }
                } catch (MalformedURLException e1) {
                    e1.printStackTrace();
                } catch (IOException e) {
                }
            return filename;
    }

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
        super.onProgressUpdate(progress);
    }
}