android – IllegalArgumentException:文件包含路径分隔符

前端之家收集整理的这篇文章主要介绍了android – IllegalArgumentException:文件包含路径分隔符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试检查应用程序内部存储中的子目录中是否存在zip:
File file = this.getApplicationContext().getFileStreamPath(this.getFilesDir().getAbsolutePath() + "/thesubdirectory/the.zip";
if(file.exists()) {
    Log.e(this.class.getName(),"file exists");
}

这是抛出java.lang.IllegalArgumentException:文件/data/data/my.package.name/files/thesubdirectory/the.zip包含路径分隔符.

为什么会这样?我认为这是你应该检查文件是否存在的方式.

解决方法

file.exists是.但getFileStreamPath无法获取路径,需要在该目录中获取文件名.试试这个:
File file = new File(this.getFilesDir().getAbsolutePath() + "/thesubdirectory/the.zip");
原文链接:https://www.f2er.com/android/309882.html

猜你在找的Android相关文章