search

Home  >  Q&A  >  body text

shell - Java执行Linux指令为文件赋予权限无效

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就不行了是否涉及到其他权限问题呢?

伊谢尔伦伊谢尔伦2802 days ago809

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-04-18 10:35:41

    String[] cmd = new String[] { "/bin/sh", "-c", "chmod 777 %s" };
    上面的命令%s好像没有被format

    Should it be modified as follows
    String[] cmd = new String[] { "/bin/sh", "-c", command };

    reply
    0
  • Cancelreply