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

前端之家收集整理的这篇文章主要介绍了java – 来自InputStream的文件路径/名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何从 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);
    }
原文链接:https://www.f2er.com/java/122165.html

猜你在找的Java相关文章