Converting inputStream to FileInputStream?

前端 未结 3 1945
清歌不尽
清歌不尽 2021-01-13 05:14

I am in a problem - i need to read SecretKey from Android APK (e.g. key.keystore), for my app it has to be read as a FileInputStream, but from assets I am getting only input

3条回答
  •  轮回少年
    2021-01-13 05:42

    I think you are referring to AssetManager.open() that returns an InputStream. There is no need to "convert" it to a FileInputStream, just get the reference to the InputStream and use it (wrap it in a BufferedInputStream if you want).

提交回复
热议问题