如何将对象输入流转换为目标文件。
我的代码如下:
AssetManager assetManager = context.getAssets();
InputStream myInputSttream = assetManager.open("file.zip");
File myFile = new File("/path/location/file.zip");
因为我有来自资产管理器的文件,该对象是输入流,但我想将此文件用作对象文件以用于下面的算法代码。
答案 0 :(得分:0)
由于您希望将InputStream中的文件解压缩到SDCard中的文件(根据您的评论),您应该查看ZipInputStream。你会写这样的东西
ZipInputStream zis = new ZipInputStream(assetManager.open("file.zip"));
然后您可以使用this code sample作为指南,将zip文件的内容实际输出到SD卡