2

我正在尝试在测试期间写入 android 虚拟设备上的“/data/myFolder”文件夹,为此,我这样做:

String[] cmd ={"su", "mkdir", dir};
    int out = 99;

    try {

        Process p = Runtime.getRuntime().exec(cmd);
        out = p.waitFor();
        BufferedInputStream in = new BufferedInputStream(p.getErrorStream());
        byte[] bytes = new byte[4096];
        while (in.read(bytes) != -1) {

        }

        in.close();
        logger.info("exit status:" + out);

    } catch (IOException e) {
        logger.severe("IOException " + e.getMessage());
        e.printStackTrace();
    } catch (InterruptedException e) {
        logger.severe("InterruptedException " + e.getMessage());
        e.printStackTrace();
    }
    if (out != 0) {
        logger.severe("Folder " + dir + " not created,exit status: " + out);
    }

或者我试过

String cmd ={"su mkdir" + dir}; 

但退出状态为 1 并且它不创建任何文件夹。使用 adb shell 中的 su mkdir /data/myFolder 可以正常工作。为什么是这个代码?什么意思?(我知道这意味着出了点问题,但是什么?没有找到任何关于 android mkdir 退出代码值的文档)。谢谢

4

1 回答 1

0

我使用下面的代码来给出命令

try {
            Process sh = Runtime.getRuntime().exec("su", null, null);
            OutputStream os = sh.getOutputStream();
            byte[] mScreenBuffer = ("mkdir dir ")
                    .getBytes();
            os.write(mScreenBuffer);
            os.flush();
            os.close();
            sh.waitFor();
        } catch (Exception e) {
            e.printStackTrace();
        }
于 2013-11-13T11:54:53.940 回答