从资产读取文件public class Utils {
public static List<Message> getMessages() {
//File file = new File("file:///android_asset/helloworld.txt");
AssetManager assetManager = getAssets();
InputStream ims = assetManager.open("helloworld.txt");
}}我正在使用这段代码试图从资产中读取一个文件。我试过两种方法。首先,使用时File我收到FileNotFoundException,使用时AssetManager getAssets()方法不被识别。这里有什么解决办法吗?
3 回答
- 3 回答
- 0 关注
- 371 浏览
添加回答
举报
0/150
提交
取消