gpt4 book ai didi

java - 来自 InputStream 的文件路径/名称

转载 作者:搜寻专家 更新时间:2023-10-30 19:40:10 25 4
gpt4 key购买 nike

如何从 Java 中的 InputStream 获取文件路径/名称?

最佳答案

这是不可能的。(不是来自 Java API 中的 FileInputStream)。 FileInputStream 构造函数不会将此信息存储在任何字段中:

public FileInputStream(File file) throws FileNotFoundException {
String name = (file != null ? file.getPath() : null);
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(name);
}
if (name == null) {
throw new NullPointerException();
}
fd = new FileDescriptor();
open(name);
}

关于java - 来自 InputStream 的文件路径/名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2501936/

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