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
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 に答える
0

Content-Disposition応答の : 添付ファイル ヘッダーを確認します。

于 2012-06-12T11:20:22.383 に答える