我正在尝试通过java运行以下命令来显示当前的wifi信号强度:
cat /proc/net/wireless | awk 'END { print $4 }' | sed 's/\.$//'
在终端中,此命令正常工作。
我用来运行命令的功能如下:
public static String[] executeNativeCommand(String[] commands, String friendlyErrorMessage, String... arguments) throws RuntimeException {
if (commands == null || commands.length == 0)
return new String[]{};
Process listSSIDProcess = null;
try {
String[] replacedCommands = new String[commands.length];
for (int t = 0; t < commands.length; t++) {
replacedCommands[t] = MessageFormat.format(commands[t], (Object[])arguments);
}
listSSIDProcess = Runtime.getRuntime().exec(replacedCommands);
ByteArrayOutputStream output = new ByteArrayOutputStream();
IOUtils.copy(listSSIDProcess.getInputStream(), output);
return new String(output.toString()).split("\r?\n");
} catch (IOException e) {
if (friendlyErrorMessage == null) {
logger.error("Error masked due to the friendly error message not being set", e);
return new String[]{};
}
throw new RuntimeException(friendlyErrorMessage, e);
} finally {
if (listSSIDProcess != null) {
listSSIDProcess.destroy();
}
}
}
我试着用它来调用它:
public String getCurrentWiFiStrength(){
String[] output = IOUtilities.executeNativeCommand(new String[]{"cat /proc/net/wireless | awk 'END { print $4 }' | sed 's/.$//'"}, null);
if (output.length > 0) {
logger.info("Wireless strength :" + output);
return output[0];
}
else {
return null;
}
}
这不起作用所以在一些stackoverflow研究之后我添加了/ bin / sh和-c这样:
public String getCurrentWiFiStrength(){
String[] output = IOUtilities.executeNativeCommand(new String[]{"/bin/sh", "-c", "cat /proc/net/wireless | awk 'END { print $4 }' | sed 's/.$//'"}, null);
if (output.length > 0) {
logger.info("Wireless strength :" + output);
return output[0];
}
else {
return null;
}
}
这也不起作用。所以我试图通过终端/bin/sh -c cat /proc/net/wireless | awk 'END { print $4 }' | sed 's/\.$//'
哪个只是一直悬挂而且不返回任何东西......所以我不确定发生了什么以及如何解决这个问题......有什么建议吗?我使用tinkerOS(基于debian的发行版)
提前感谢!
编辑:
所以我发现为什么它在shell中不起作用,这是我的逃避...正确的语法是:
/ bin / bash -c“cat / proc / net / wireless | awk'END {print \ $ 4;}'| sed's /.$//'"
所以我试过了:
public String getCurrentWiFiStrength(){
String[] output = IOUtilities.executeNativeCommand(new String[]{"/bin/sh", "-c", "\"cat /proc/net/wireless | awk 'END {print \\$4;}' | sed 's/.$//'\""}, null);
if (output.length > 0) {
return output[0];
}
else {
return null;
}
}
没有太多运气......有什么建议吗?