来自输入流的文件路径/名称

2022-09-03 05:34:50

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


答案 1

这是不可能的。(不是来自 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);
    }

答案 2

不能,因为 可能不是文件或路径。您可以实现自己的动态生成数据InputStreamInputStream


推荐