java多线程adb安装apk卡死_Windows平台上,Java Process执行adb pull卡住的问题

最近用java写了一个小工具,其中有一个操作是从android手机中pull文件夹到电脑上。在mac上调试一切正常,拿到windows上运行时发现会很大概率出现Process卡住的问题,原因不明。

后来将pull文件夹改为pull文件夹中的一个个文件后,不再出现卡住的问题。

卡住的代码

private static void pullFiles(String remoteDir, String localDir) {

Utils.execute(String.format("%s pull %s %s", Utils.getAdbPath(), remoteDir, localDir));

}

运行正常的代码

private static void pullFiles(String remoteDir, String localDir) {

List fileNameList = Utils.getExecutionResult(String.format("%s shell ls %s", Utils.getAdbPath(), remoteDir));

for (String fileName : fileNameList) {

if (fileName != null) {

String filePath = dir + "/" + fileName;

Utils.execute(String.format("%s pull %s %s", Utils.getAdbPath(), file, new File(localDir, fileName).getAbsolutePath()));

}

}

}

工具代码

public static List getExecutionResult(String cmd) {

LOGGER.debug("get execution result cmd : {}", cmd);

ProcessBuilder builder = new ProcessBuilder();

if (SystemUtils.IS_OS_WINDOWS) {

builder.command("cmd", "/c", cmd);

} else {

builder.command("sh", "-c", cmd);

}

List result = new LinkedList<>();

Thread t = new Thread(() -> {

BufferedReader outReader = null;

try {

Process p = builder.start();

outReader = new BufferedReader(new InputStreamReader(p.getInputStream()));

String line = null;

while ((line = outReader.readLine()) != null) {

LOGGER.debug("readline : {}", line);

result.add(line);

}

p.waitFor();

} catch (Exception e) {

LOGGER.error("occur exception", e);

} finally {

if (outReader != null) {

try {

outReader.close();

} catch (IOException e) {}

}

}

});

t.start();

try {

t.join();

} catch (InterruptedException e) {}

return result;

}

public static boolean execute(String cmd) {

LOGGER.debug("execute cmd : {}", cmd);

ProcessBuilder builder = new ProcessBuilder();

if (SystemUtils.IS_OS_WINDOWS) {

builder.command("cmd", "/c", cmd);

} else {

builder.command("sh", "-c", cmd);

}

try {

Process p = builder.start();

p.waitFor();

return true;

} catch (Exception e) {

LOGGER.error("occur exception", e);

return false;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值