Java tutorial
//package com.java2s; public class Main { private static final String INNER_ROOT_DIR = "/data/local/tmp"; private static void changeInnerRootDirPermission() { try { Runtime.getRuntime().exec("chmod 777 " + INNER_ROOT_DIR); } catch (Exception e) { } } }