Android ICMP ping

5 java networking android

有没有办法ping主机(标准Android或通过NDK实现),并获得有关响应的详细信息?(时间,ttl,丢失包等.)我在考虑一些具有此功能的开源应用程序,但找不到任何...

谢谢

Jen*_*ens 13

据我所知,发送ICMP回应请求需要(即做它需要的setuid应用程序) -这不是当前可能在"股票"的Android(地狱,甚至InetAddress类#isReachable()在Android的方法是一个笑话是没有按"按照规范工作).

使用/ usr/bin/ping和Process的一个非常基本的例子 - 使用AsyncTask读取ping结果:

public class PingActivity extends Activity {
    PingTask mTask;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    @Override
    protected void onResume() {
        super.onResume();
        mTask = new PingTask();
        // Ping the host "android.com"
        mTask.execute("android.com");
    }

    @Override
    protected void onPause() {
        super.onPause();
        mTask.stop();
    }

    class PingTask extends AsyncTask<String, Void, Void> {
        PipedOutputStream mPOut;
        PipedInputStream mPIn;
        LineNumberReader mReader;
        Process mProcess;
        TextView mText = (TextView) findViewById(R.id.text);
        @Override
        protected void onPreExecute() {
            mPOut = new PipedOutputStream();
            try {
                mPIn = new PipedInputStream(mPOut);
                mReader = new LineNumberReader(new InputStreamReader(mPIn));
            } catch (IOException e) {
                cancel(true);
            }

        }

        public void stop() {
            Process p = mProcess;
            if (p != null) {
                p.destroy();
            }
            cancel(true);
        }

        @Override
        protected Void doInBackground(String... params) {
            try {
                mProcess = new ProcessBuilder()
                    .command("/system/bin/ping", params[0])
                    .redirectErrorStream(true)
                    .start();

                try {
                    InputStream in = mProcess.getInputStream();
                    OutputStream out = mProcess.getOutputStream();
                    byte[] buffer = new byte[1024];
                    int count;

                    // in -> buffer -> mPOut -> mReader -> 1 line of ping information to parse
                    while ((count = in.read(buffer)) != -1) {
                        mPOut.write(buffer, 0, count);
                        publishProgress();
                    }
                    out.close();
                    in.close();
                    mPOut.close();
                    mPIn.close();
                } finally {
                    mProcess.destroy();
                    mProcess = null;
                }
            } catch (IOException e) {
            }
            return null;
        }
        @Override
        protected void onProgressUpdate(Void... values) {
            try {
                // Is a line ready to read from the "ping" command?
                while (mReader.ready()) {
                    // This just displays the output, you should typically parse it I guess.
                    mText.setText(mReader.readLine());
                }
            } catch (IOException t) {
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

  • 那么它可能正在使用 [java.lang.Process](http://developer.android.com/reference/java/lang/Process.html) 执行 ping 命令 - 该命令是 setuid,如果您解析,它可以为您提供 TTL输出 - 直接从 Java 执行是行不通的(Process 中的示例实际上正在运行 ping 命令)。 (2认同)
  • 是的,它是[setuid](http://en.wikipedia.org/wiki/Setuid)并且将执行拥有root所需的部分.您将不得不解析它将生成的连续字符串输入 - 但上面的附加示例显示了如何在AsyncTask中运行命令时使用管道输入/输出流来处理UI线程上的结果. (2认同)