Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As title stated, when i used the command prompt, the code works like this:

C:\(whatever directory) > cd (to whatever directory the adb.exe is)        
C:\(dir contains adb.exe) > adb shell             
adb server is out of date. killing...         
* daemon started successfully *      
~$ su           
su
root@android :/ # id      
id        
uid=0(root) gid=0(root)

If you are wondering why it started with $ instead of # is because I used Cross-platform ADB Scripting Unified Android Loader (CASUAL for short) to root the phone (for project used).

okay, here comes the problem

public int checkRoot() {
    int n = 0;

    if (settings.checkLocation(settings.getLocation())) {
        // Arrays of Commands needed to run in Command Prompt
        String[] arrayCmds2 = { "cmd", "/C", "adb shell", "su", "id" };

        // Run the Command Prompt Commands
        try {
            ProcessBuilder process2 = new ProcessBuilder(arrayCmds2)
                    .directory(new File(settings.getLocation()));
            Process p2 = process2.start();


            BufferedReader br = new BufferedReader(new InputStreamReader(
                    p2.getErrorStream()));
            BufferedReader br2 = new BufferedReader(new InputStreamReader(
                    p2.getInputStream()));
            String line;

            System.out.println("br: " + br.readLine());
            System.out.println("br2: " + br2.readLine());

            if ((line = br.readLine()) != null) {
                if (line.equals("error: device not found"))
                    n = 2;
                System.out.println("br: " + line);
            }
            if ((line = br2.readLine()) != null) {
                if (line.equals("/system/bin/sh: su: not found")){
                    n = 3;
                    System.out.println("br2 : " + line);
                }
                else if (line.equals("su"))
                    n = 4;
                else if (line.equals("uid=0(root) gid=0(root)")){
                    n = 0;
                }
                else
                    n =3;
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    } else {
        n = 1;
    }
    System.out.println(n);


    return n;}

When I start to initialise the program, eclipse started to hang, if I removed su, I am able to run the program smoothly. I have no idea why as well.

Is there someone kind enough to enlighten me with my problem? Thanks a lot.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.