gpt4 book ai didi

java - 找不到文件异常 - 在 android 中的 sdcard 上创建新文件时

转载 作者:行者123 更新时间:2023-11-29 05:44:25 25 4
gpt4 key购买 nike

在我的应用程序中,我的要求是需要从 assets 文件夹安装 .APK 文件,以便我尝试将 apk 文件从 assets 文件夹复制到 sdcard,我得到 File Not Found Exception。这些是以下代码:

String file_path = Environment.getExternalStorageDirectory().getAbsolutePath();
String file_name = "ImageDownloading.apk";

AssetManager assetManager = getAssets();
try{
InputStream input = new BufferedInputStream(assetManager.open(file_name));
File path = new File(file_path);
if(!path.exists()){
path.mkdirs()
}
File file = new File(path,file_name);
OutputStream output = new FileOutputStream(file); // Here i get File Not Found Exception error.
byte data[] = new byte[1024];
int count;
while ((count = input.read(data)) != -1) {
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
}
catch(FileNotFoundException e){
Toast.makeText(MainActivity.this,"File not found exception " + e.getMessage(), Toast.LENGTH_SHORT).show();
}

我花了很多时间,但我没有找到解决方案。

最佳答案

您的 list 文件中是否设置了此权限?

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

关于java - 找不到文件异常 - 在 android 中的 sdcard 上创建新文件时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16345045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com