public static String[] getSetPermissionCommand(String perm, boolean recursive)
{
if (recursive) {
return new String[] { "chmod", "-R", WINDOWS ? new String[] { WINUTILS, "chmod", "-R", perm } : perm };
}
return new String[] { "chmod", WINDOWS ? new String[] { WINUTILS, "chmod", perm } : perm };
}摘自hadoop-common-2.5.2.jar
用jd-gui-0.3.6 反编译的,没看过src
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
String[] 里面放 String[]...反编译器抽风了?