android 获取i2c 权限

public void DoSomething()
{
    Process process = null;
    DataOutputStream dataOutputStream = null;
    try
    {
        process = Runtime.getRuntime().exec("su");
        dataOutputStream = new DataOutputStream(process.getOutputStream());
        dataOutputStream.writeBytes("chmod 777 /dev/i2c-1 \n");
        dataOutputStream.writeBytes("exit\n");
        dataOutputStream.flush();
        process.waitFor();
    }
    catch (Exception e)
    {
        Log.d(TAG, "RootCommand: " + e.getMessage());
        return;
    }
    finally
    {
        try
        {
            if (dataOutputStream != null)
            {
                dataOutputStream.close();
            }
            process.destroy();
        }
        catch (Exception e)
        {
            Log.d(TAG, "RootCommand: " + e.getMessage());
            return;
        }
    }
    Log.d(TAG, "RootCommand: Root Succeed.");
}





#1. 创建接收器
public class USBReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        StorageManager mStorageManager = (StorageManager) context.getSystemService(Activity.STORAGE_SERVICE);
        String action = intent.getAction();
        Log.d(TAG, "receive broadcast\n"+action);
        if(action.equals(Intent.ACTION_MEDIA_MOUNTED)) {
           String path = intent.getData().getPath();
            //path = getCorrectPath(path);//获取正确的,完整的路径
            Log.d(TAG, "THE PATH IS:\n"+path);
        }
    }
}
#2. 定义变量
USBReceiver usbBroadcast;

#3. 在onCreate 下面注册广播
usbBroadcast = new USBReceiver();
IntentFilter usbFilter= new IntentFilter();
usbFilter.addAction(Intent.ACTION_MEDIA_MOUNTED);
usbFilter.addAction(Intent.ACTION_MEDIA_REMOVED);
usbFilter.addAction(Intent.ACTION_MEDIA_UNMOUNTED);
usbFilter.addDataScheme("file");
registerReceiver(usbBroadcast,usbFilter);

  • 4
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值