gpt4 book ai didi

java - 无法chmod文件夹写入

转载 作者:行者123 更新时间:2023-12-02 00:11:59 25 4
gpt4 key购买 nike

在我的应用程序( Root设备)中,我想 chmod 一些文件、文件夹以进行读写。我的代码在这里:

String path = "/mnt/sdcard/.android_secure";
String[] chmod = { "su", "-c","chmod 777 "+path };
try {
Runtime.getRuntime().exec(chmod);
} catch (IOException e) {
e.printStackTrace();
}

File f = new File("/mnt/sdcard/.android_secure");
f.canRead();

但是文件仍然无法读取!

最佳答案

我建议您阅读命令的输出,检查命令报告的错误,然后采取所需的纠正措施。

Process process = Runtime.getRuntime().exec(chmod); 
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));

String line;
while ((line = bufferedReader.readLine()) != null){

Log.d("myTAG", line);
}

祝你好运

关于java - 无法chmod文件夹写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12638305/

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