gpt4 book ai didi

java - Android 应用程序 shell "no such file or directory",在文件资源管理器和 adb 中正常

转载 作者:行者123 更新时间:2023-12-01 13:20:20 24 4
gpt4 key购买 nike

我正在尝试将文件从 /path/to the/file.ext (是的,它有空格,我怀疑这至少是问题的一部分)到 /data/data/com.my_pkg.app/file.ext

在我的(根)应用程序中,我这样做:

String cmd = "su -c \"cp /path/to\\ the/file.ext /data/data/com.my_pkg.app/file.ext\"";
try {
Process process;
process = new ProcessBuilder(cmd).start();
try {
process.waitFor();
} catch (InterruptedException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}

但这会引发IOException:没有这样的文件或目录

检查我的理智,我打开了一个根文件资源管理器应用程序,导航到上面的路径,复制它,并将其粘贴到我的应用程序目录中,一切都很好。

为什么cp找不到它? - 文件资源管理器应用程序必须在所有 GUI 下执行相同的操作(好吧,进行修改使其工作!)。

编辑:完整错误:

W/System.err( 2441): java.io.IOException: Error running exec(). 
Command: [su -c "cp /path/to\ the/file.ext /data/data/com.my_pkg.app/file.ext"]
Working Directory: null
Environment: [ANDROID_ROOT=/system,
EMULATED_STORAGE_SOURCE=/mnt/shell/emulated,
LOOP_MOUNTPOINT=/mnt/obb,
EMULATED_STORAGE_TARGET=/storage/emulated,
ANDROID_BOOTLOGO=1, LD_LIBRARY_PATH=/vendor/lib:/system/lib,
EXTERNAL_STORAGE=/storage/emulated/legacy,
ANDROID_SOCKET_zygote=10,
ANDROID_DATA=/data,
PATH=/sbin:/vendor/bin:/system/sbin:/system/bin:/system/xbin,
ANDROID_ASSETS=/system/app, ASEC_MOUNTPOINT=/mnt/asec,
BOOTCLASSPATH=/system/framework/core.jar:/system/framework/conscrypt.jar:/system/framework/okhttp.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/framework2.jar:/system/framework/telephony-common.jar:/system/framework/voip-common.jar:/system/framework/mms-common.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar:/system/framework/webviewchromium.jar,
ANDROID_PROPERTY_WORKSPACE=9,0,
ANDROID_STORAGE=/storage]

最佳答案

我将其发布为答案,因为它解决了我的问题正如我所问的,因此应该为通过搜索发生的任何人解决这个问题。然而,对我来说,it just led to another question .

通过更改字符串:

String cmd = "su -c \"cp /path/to\\ the/file.ext /data/data/com.my_pkg.app/file.ext\"";

到一个数组(其余代码按原样连接/构建):

String[] cmd = {"su", "-c", "\"cp /path/to\\ the/file.ext /data/data/com.my_pkg.app/file.ext\""};

所有错误均已解决。我无法告诉你原因,但至少是这样。

关于java - Android 应用程序 shell "no such file or directory",在文件资源管理器和 adb 中正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22077370/

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