gpt4 book ai didi

java - 使用java下载文件时如何获取原始文件名

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:42:25 25 4
gpt4 key购买 nike

当我像这样用java从URL下载文件时如何获取原始文件名

File file = new File( "test" ) ;
FileUtils.copyURLToFile(URL, file)

因为当我创建文件时我必须输入一个名称但在这个阶段我还不知道下载文件的原始名称。

最佳答案

对我来说,建议的文件名存储在头文件 Content-Disposition:

Content-Disposition: attachment; filename="suggestion.zip"

我正在从 nexus 下载一个文件,因此对于不同的服务器/应用程序,它可能存储在不同的 header 字段中,但是使用一些工具很容易找到,例如用于 firefox 的 firebug。

以下几行对我来说很好

URL url = new URL(urlString);
// open the connection
URLConnection con = url.openConnection();
// get and verify the header field
String fieldValue = con.getHeaderField("Content-Disposition");
if (fieldValue == null || ! fieldValue.contains("filename=\"")) {
// no file name there -> throw exception ...
}
// parse the file name from the header field
String filename = fieldValue.substring(fieldValue.indexOf("filename=\"") + 10, fieldValue.length() - 1);
// create file in systems temporary directory
File download = new File(System.getProperty("java.io.tmpdir"), filename);

// open the stream and download
ReadableByteChannel rbc = Channels.newChannel(con.getInputStream());
FileOutputStream fos = new FileOutputStream(download);
try {
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
} finally {
fos.close();
}

关于java - 使用java下载文件时如何获取原始文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33833985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com