作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 android 中创建一个应用程序!我正在尝试使用这行代码从我的 Main Activity 类传递 File[]:
File[] listFile;
File file = new File(android.os.Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), "Eye Spy");
if (file.isDirectory()) {
listFile = (File[]) file.listFiles();
}
Intent i = new Intent();
i.putExtra("images", listFile);
使用这行代码添加到我的 MapsActivity:
listFile = (File[]) getIntent().getExtras().get("images");
但是当我运行该应用程序时,它会显示一条错误消息:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.pathnrdo.eyespy1/com.example.pathnrdo.eyespy1.MapsActivity}: java.lang.ClassCastException: java.lang.Object[] cannot be cast to java.io.File[]
问题是什么?我该如何解决?感谢您的回复:)
最佳答案
file.listFiles()
已经返回一个 File[],你不需要再次转换。
关于java - Android - 如何将对象 [] 转换为文件 [],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34080825/
我是一名优秀的程序员,十分优秀!