当前位置: 代码迷 >> 综合 >> 使用Process运行程序提示error: incompatible types: java.lang.Process cannot be converted to android.os.Proces
  详细解决方案

使用Process运行程序提示error: incompatible types: java.lang.Process cannot be converted to android.os.Proces

热度:7   发布时间:2023-11-27 11:24:11.0

一、在android framework sevice里面 添加下面的代码,使用Process  java中运行第三方程序,编译的时候提示 error: incompatible types: java.lang.Process cannot be converted to android.os.Proces。

  private boolean CheckInternet(){String result = null;try {String ip = "www.baidu.com";Log.d(TAG, "Begin to check internet!");Runtime runtime = Runtime.getRuntime();//java.lang.Process proc = runtime.exec("ping -c 3 -w 10 " + ip);//java.lang.Process proc = runtime.exec("ping -c 3 -w 3  www.google.com");Process proc = runtime.exec("ping -c 3 -w 3  www.google.com");InputStream input = proc.getInputStream();BufferedReader in = new BufferedReader(new InputStreamReader(input));StringBuffer stringBuffer = new StringBuffer();String content = "";while ((content = in.readLine()) != null) {stringBuffer.append(content+"\n");}Log.d(TAG, "result content : " + stringBuffer.toString());int status = proc.waitFor();Log.d(TAG, "status:" + status);if(status == 0){result = "success";return true;}else {result = "failed";}} catch (IOException e) {result = "IOException";} catch (InterruptedException e) {result = "InterruptedException";} finally {Log.d(TAG, "result = " + result);}return false;}

二、使用Process类的时候,同时调用的java.lang和android.os两个包下的Process类,可能是在编译的时候没有出现报错,但是在机器运行的时候出现了报错。

三、如果要同时调用不同包名下,同类名的类,就要下面这样写:

java.lang.Process process = null;
android.os.Process process = null;

四、我做如下修改就可以编译通过。 

五、参考文章

Android开发——调用Process遇到类型转换异常_裕博的博客-CSDN博客

  相关解决方案