作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
有没有办法获取 Assets 文件夹中的其中一个文件的文件对象。我知道如何加载此类文件的输入流,但我需要一个文件对象而不是输入流。
这样我加载输入流
InputStream in2 = getInstrumentation().getContext().getResources().getAssets().open("example.stf2");
但是我需要文件对象,这样文件就找不到了
File f = new File("assets/example.stf2");
最佳答案
找到了一个适用于我的情况的解决方案,也许其他人也可以使用它。
从我的 android 测试项目中检索文件到输入流
InputStream input = getInstrumentation().getContext().getResources().getAssets().open("example.stf2");
在被测android应用的External-Cachedir上创建一个文件
File f = new File(getInstrumentation().getTargetContext().getExternalCacheDir() +"/test.txt");
复制输入流到新文件
FileUtils.copyInputStreamToFile(input, f);
现在我可以使用这个文件进行进一步的测试
关于android - 如何从我的 android 测试项目的 Assets 文件夹加载文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23361289/
我是一名优秀的程序员,十分优秀!