qqhai1986 2015-01-23 06:49 采纳率: 100%
浏览 5501
已采纳

android 上层读写 sys/bus/驱动节点 有有没有达人知道方法

网上查了好多都不成功啊

运行到到 os.writeBytes(command + "\n");时老是出错啊 java.io.IOException: write failed: EPIPE (Broken pipe)

下面是程序
Process process = null;
DataOutputStream os = null;

        try {
            process = Runtime.getRuntime().exec("su",null,null);

            os = new DataOutputStream(process.getOutputStream());
            os.writeBytes(command + "\n");
            os.writeBytes("exit\n");
            os.flush();
            process.waitFor();
        } catch (Exception e) {
              e.printStackTrace();  
            return null;
        } finally {
            try {
                if (os != null) {
                    os.close();
                }
                 //process.destroy();
            } catch (Exception e) {
                  e.printStackTrace();  
                return null;
            }
        }
  • 写回答

2条回答 默认 最新

  • jiankangshiye 2015-12-09 11:17
    关注

    写sys节点也可以的,apk要在packages/apps/目录下,用mm编译,同时要在AndroidManifest.xml配置权限

         String exe_path = "/sys/class/rfkill/rfkill0/state";
    
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
    
            mRefresh = (Button)findViewById(R.id.refresh);
            mRefresh.setOnClickListener(mClickListener);
    
            mMountText = (TextView)findViewById(R.id.mountText);
            mMount = (Button)findViewById(R.id.mountBtn1);
            mMount.setOnClickListener(mClickListener);
    
            try
            {
                BufferedWriter bufWriter = new BufferedWriter(new FileWriter(exe_path));
                bufWriter.write("1");  // 这儿进行的写操作
                bufWriter.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
    
            try {
                /*
                exe_file = new File(exe_path);  
                exe_file.setExecutable(true, true); 
                */
                Runtime runtime = Runtime.getRuntime();            
                Process process = runtime.exec("cat /sys/class/rfkill/rfkill0/state"); // 这儿进行的度操作
                InputStream is = process.getInputStream();
                InputStreamReader isr = new InputStreamReader(is);
                BufferedReader br = new BufferedReader(isr);
                String line = null;
                while (null != (line = br.readLine())) {
                    Log.e("########", line);
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 etcd集群部署问题
  • ¥20 谁可以帮我一下问一下各位
  • ¥15 为何重叠加权后love图的SMD与svyCreateTableOne函数绘制基线表的不一致
  • ¥15 QFILHelper怎么恢复全字库,提示进程已完成,只能恢复分区文件
  • ¥150 求 《小魔指》街机游戏机整合模拟软件
  • ¥20 你好,我想问下easyExcel下拉多选,或者复选框可以实现吗
  • ¥20 双非跨考工科哪个专业和方向就业前景好?
  • ¥20 求会6sv辐射传输模型,辅导(可py6s🙏🏻有偿
  • ¥15 .xla后缀的文件拖到excel里什么内容也没有怎么办
  • ¥20 Workbench中Mechanical打不开、闪退是什么原因?