14

是否可以获取使用 HttpURLConnection 下载的文件的名称?

URL url = new URL("http://somesite/getFile?id=12345");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setAllowUserInteraction(false);
conn.setDoInput(true);
conn.setDoOutput(true);
conn.connect();
InputStream is = conn.getInputStream();

在上面的示例中,我无法从 URL 中提取文件名,但服务器会以某种方式向我发送文件名。

4

4 回答 4

16

您可以使用HttpURLConnection.getHeaderField(String name)来获取Content-Disposition标题,该标题通常用于设置文件名:

String raw = conn.getHeaderField("Content-Disposition");
// raw = "attachment; filename=abc.jpg"
if(raw != null && raw.indexOf("=") != -1) {
    String fileName = raw.split("=")[1]; //getting value after '='
} else {
    // fall back to random generated file name?
}

正如其他答案指出的那样,服务器可能会返回无效的文件名,但您可以尝试一下。

于 2012-06-12T11:12:49.223 回答
4

坦率的回答是 - 除非 Web 服务器在 Content-Disposition 标头中返回文件名,否则没有真正的文件名。也许您可以将其设置为 URI 在 / 之后和查询字符串之前的最后一部分。

Map m =conn.getHeaderFields();
if(m.get("Content-Disposition")!= null) {
 //do stuff
}
于 2012-06-12T11:08:14.213 回答
0

检查Content-Disposition响应中的 : 附件标头。

于 2012-06-12T11:20:22.383 回答
0
Map map = connection.getHeaderFields ();
            if ( map.get ( "Content-Disposition" ) != null )
            {
                String raw = map.get ( "Content-Disposition" ).toString ();
                // raw = "attachment; filename=abc.jpg"
                if ( raw != null && raw.indexOf ( "=" ) != -1 )
                {
                    fileName = raw.split ( "=" )[1]; // getting value after '='
                    fileName = fileName.replaceAll ( "\"", "" ).replaceAll ( "]", "" );
                }
            }
于 2016-11-30T11:19:30.200 回答