2

我在这个位置的 sdcard 中有一些文件:

/Android/data/com.abc.xyz/files/main.1.com.abc.xyz.obb/myfile.xml

我正在尝试从上述路径读取文件并返回一个输入流,但输入的 stram 返回为空,我检查了路径也正确。

InputStream inputStream = null;
    ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
    if (classLoader == null) {
        classLoader = this.getClass().getClassLoader();
    }
// here filepath is the path that i have added above.
    inputStream = classLoader.getResourceAsStream(filePath);
    return inputStream;
    }

为什么我变空了?

4

0 回答 0