Java tutorial
//package com.java2s; /* * DreamNarae (Root) Open Source * Colorful Harmony Team- Angeloid Team, inc * Copyright 2009-2013 Angeloid Team, inc Licensed under the Apache License * Version 2.0 (the "License"); you may not use this file except in compliance with the License. * * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software distributed * * Under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and limitations under the License. */ import java.io.DataOutputStream; import java.io.IOException; import android.content.Context; public class Main { public final static String SCRIPT_NAME_prev2 = "dnprev2.sh"; public static boolean instantExec_prev2(Context context, String command) { try { runSuCommand_prev2(context, command.toString()); } catch (Exception e) { return false; } return true; } public static int runSuCommand_prev2(Context context, String command) throws IOException, InterruptedException { return runSuCommandAsync_prev2(context, command).waitFor(); } public static Process runSuCommandAsync_prev2(Context context, String command) throws IOException { DataOutputStream fout_prev2 = new DataOutputStream(context.openFileOutput(SCRIPT_NAME_prev2, 0)); fout_prev2.writeBytes(command); fout_prev2.close(); String[] args_prev2 = new String[] { "su", "-c", ". " + context.getFilesDir().getAbsolutePath() + "/" + SCRIPT_NAME_prev2 }; Process proc_prev2 = Runtime.getRuntime().exec(args_prev2); return proc_prev2; } }