public class Demo {
public static void main(String[] args) {
String path = File.separator + "home" + File.separator + "admin" + File.separator + "zlib_decompress"; // zlib_decompress 路径
String template = "chmod 777 %s";
String command = String.format(template, path);
String[] cmd = new String[] { "/bin/sh", "-c", "chmod 777 %s" };
try {
Runtime.getRuntime().exec(cmd); // chmod 777 /home/admin/zlib_decompress
} catch (Exception e) {
e.printStackTrace();
}
}
}
但直接执行chmod 777 /home/admin/zlib_decompress却可以,使用这种方式执行其他指令都可以但换成chmod就不行了是否涉及到其他权限问题呢?
PHP中文网2017-04-18 10:35:41
String[] cmd = new String[] { "/bin/sh", "-c", "chmod 777 %s" };
上面的命令%s
好像没有被format
是不是應該修改成如下的方式
String[] cmd = new String[] { "/bin/sh", "-c", command };