使用路径从文件内部存储目录中的 zip 中获取文件
Get file from zip in file Internal Storage directory using path
我想从内部存储文件目录加载一个文件。我尝试以这种方式指定路径:
File("${context.filesDir.absolutePath}/zipfile.zip/name.png")
但我收到错误消息:No such file or directory
。
有一种方法可以指定name.png的路径而不用ZipFile解压class?
There is a way to specify the path of name.png without unzipping it with ZipFile class?
不,对不起。 Android 以相当传统的方式处理 ZIP 文件。如果您想访问其内容,请使用 ZipFile
、ZipInputStream
或类似的 类.
我想从内部存储文件目录加载一个文件。我尝试以这种方式指定路径:
File("${context.filesDir.absolutePath}/zipfile.zip/name.png")
但我收到错误消息:No such file or directory
。
有一种方法可以指定name.png的路径而不用ZipFile解压class?
There is a way to specify the path of name.png without unzipping it with ZipFile class?
不,对不起。 Android 以相当传统的方式处理 ZIP 文件。如果您想访问其内容,请使用 ZipFile
、ZipInputStream
或类似的 类.