Runtime.exec() bug: hangs without providing a Process object

前端 未结 4 1222
不知归路
不知归路 2020-12-05 05:37

Whether I use this:

process = Runtime.getRuntime().exec(\"logcat -d time\");

or that:

process = new ProcessBuilder()
               


        
4条回答
  •  攒了一身酷
    2020-12-05 06:09

    Bug fix in Bionic was commited monthes ago, but it still hasn't been included in Android 4.0.4.

提交回复
热议问题