remount System Shell command - Android Android OS

Android examples for Android OS:Shell Command

Description

remount System Shell command

Demo Code

/*// ww w  .  ja  va2 s  .  c  om
 * 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.
 */
//package com.java2s;

import java.io.DataOutputStream;
import java.io.IOException;

import android.content.Context;

public class Main {
    public final static String SCRIPT_NAME_miracle2 = "your.sh";

    public static void remountSystem_miracle2(Context c) {
        try {
            runSuCommand_miracle2(c, "mount -orw,remount /system ; ");
        } catch (Exception d) {
        }
    }

    public static int runSuCommand_miracle2(Context context, String command)
            throws IOException, InterruptedException {
        return runSuCommandAsync_miracle2(context, command).waitFor();
    }

    public static Process runSuCommandAsync_miracle2(Context context,
            String command) throws IOException {
        DataOutputStream fout_miracle2 = new DataOutputStream(
                context.openFileOutput(SCRIPT_NAME_miracle2, 0));
        fout_miracle2.writeBytes(command);
        fout_miracle2.close();

        String[] args_miracle2 = new String[] {
                "su",
                "-c",
                ". " + context.getFilesDir().getAbsolutePath() + "/"
                        + SCRIPT_NAME_miracle2 };
        Process proc_miracle2 = Runtime.getRuntime().exec(args_miracle2);
        return proc_miracle2;
    }
}

Related Tutorials