While trying to provide Ethernet Connectivity to my Android Device running on Jellybean, I used ifconfig and route commands to setup Ethernet Connection. Now I am trying to execute these commands from an Android application, but am not able to set the IP and gateway address. Is there anyother way of executing these commands? I used the following code,
public void root_command(String cmd)
{
try{
Process p=Runtime.getRuntime().exec("su");
DataOutputStream stream=new DataOutputStream(p.getOutputStream());
stream.writeBytes(cmd);
stream.writeBytes("exit \n");
p.waitFor();
}
catch(IOException e)
{
}
catch(InterruptedException e)
{
}
}
these are the commands,
busybox ifconfig eth0 <ip_address> up
busybox route add default gw <gateway_address> eth0
use this :