如何在 android 应用程序中执行另一个程序 (tcpdump)?
How execute an another program (tcpdump) in android application?
我想开发一个 android 应用程序,我可以通过 tcpdump 捕获网络数据包。我已经 root 我的 android 模拟器设备并且我已经为 android 安装了 tcpdump。我可以定期从终端仿真器 运行 tcpdump。
现在我想开发一个 android 应用程序,它可以执行以下命令:
tcpdump > test
我的javaclass是:
package com.example.test1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends Activity
{
private Process p;
private TextView error;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void tcpdump( View v )
{
try
{
p = Runtime.getRuntime().exec( "su" );
p = Runtime.getRuntime().exec( "tcpdump > test" );
}
catch ( Exception e )
{
error = (TextView) findViewById( R.id.error_message );
error.setText( "1" );
}
}
public void stop ( View v )
{
p.destroy();
}
}
我的 android xml 文件是:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.test1.MainActivity" >
<TextView
android:id="@+id/error_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_marginLeft="27dp"
android:layout_marginTop="124dp"
android:layout_toRightOf="@+id/textView1"
android:text="Sniff"
android:onClick="tcpdump" />
<Button
android:id="@+id/stop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:layout_centerHorizontal="true"
android:layout_marginTop="88dp"
android:text="Stop"
android:onClick="stop" />
</RelativeLayout>
虽然应用程序正在 运行ning,但我无法从命令中找到测试 txt 文件:
p = Runtime.getRuntime().exec( "tcpdump > test" )
谢谢。
首先,将您的 tcpdump 文件复制到一个众所周知的文件夹中。比方说,您使用 /sdcard/myfolder
然后,执行以下操作:
Runtime.getRuntime().exec(new String[]{"su", "-c", "chmod 777 /sdcard/my_folder/tcpdump"});
Runtime.getRuntime().exec(new String[]{"su", "-c", "/sdcard/my_folder/tcpdump > /sdcard/my_folder/test"});
当然你也可以使用getExternalstoragedirectory
选择一个文件夹,将tcpdump文件复制到里面
我想开发一个 android 应用程序,我可以通过 tcpdump 捕获网络数据包。我已经 root 我的 android 模拟器设备并且我已经为 android 安装了 tcpdump。我可以定期从终端仿真器 运行 tcpdump。
现在我想开发一个 android 应用程序,它可以执行以下命令:
tcpdump > test
我的javaclass是:
package com.example.test1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends Activity
{
private Process p;
private TextView error;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void tcpdump( View v )
{
try
{
p = Runtime.getRuntime().exec( "su" );
p = Runtime.getRuntime().exec( "tcpdump > test" );
}
catch ( Exception e )
{
error = (TextView) findViewById( R.id.error_message );
error.setText( "1" );
}
}
public void stop ( View v )
{
p.destroy();
}
}
我的 android xml 文件是:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.test1.MainActivity" >
<TextView
android:id="@+id/error_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_marginLeft="27dp"
android:layout_marginTop="124dp"
android:layout_toRightOf="@+id/textView1"
android:text="Sniff"
android:onClick="tcpdump" />
<Button
android:id="@+id/stop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:layout_centerHorizontal="true"
android:layout_marginTop="88dp"
android:text="Stop"
android:onClick="stop" />
</RelativeLayout>
虽然应用程序正在 运行ning,但我无法从命令中找到测试 txt 文件:
p = Runtime.getRuntime().exec( "tcpdump > test" )
谢谢。
首先,将您的 tcpdump 文件复制到一个众所周知的文件夹中。比方说,您使用 /sdcard/myfolder
然后,执行以下操作:
Runtime.getRuntime().exec(new String[]{"su", "-c", "chmod 777 /sdcard/my_folder/tcpdump"});
Runtime.getRuntime().exec(new String[]{"su", "-c", "/sdcard/my_folder/tcpdump > /sdcard/my_folder/test"});
当然你也可以使用getExternalstoragedirectory
选择一个文件夹,将tcpdump文件复制到里面