Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to get root access for rooted devices, and I was wondering how I can request root access. I need the access for the file system. Thanks a lot.

share|improve this question
Are you targeting the native platform, or trying to do this in Java? – Keith Layne Sep 3 '11 at 21:15
I'm trying to do it in Java :-) – Michell Bak Sep 3 '11 at 21:16

1 Answer

up vote 20 down vote accepted

Just exec the command su and within that Process you have root priviliges:

Process p = Runtime.getRuntime().exec("su");

See this blog post for full example.

share|improve this answer
So... I do this before getting directory information, like folders and such? – Michell Bak Sep 3 '11 at 21:17
Check updated answer (the link). – dacwe Sep 3 '11 at 21:18
Thanks, I'll give it a shot! :-) – Michell Bak Sep 3 '11 at 21:20
Do rooted phones not have a root password then? – Keith Layne Sep 3 '11 at 21:24
4  
@keith layne: When you run su the Superuser app starts which can grant the request. – dacwe Sep 3 '11 at 21:31
show 1 more comment

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.