我想在Android上製作一個端口掃描器,而且我有點卡住了。我想查看一個端口是否在路由器/默認網關上打開,但似乎沒有任何工作。我嘗試使用可達,但我覺得這可能是錯誤的事情。Android端口掃描器
import java.net.InetAddress;
import java.net.UnknownHostException;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.DhcpInfo;
import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;
import android.os.Bundle;
import android.widget.TextView;
public class portscan extends Activity {
String targetHost;
public int startPort = 1; //(for uses in later programming)
public int endPort = 1000;
private Intent scanIntent;
InetAddress targetAddress;
String targetHostName;
WifiManager networkd;
DhcpInfo details;
public String gateway;
TextView GW;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
try {
setContentView(R.layout.port);
GW = (TextView)findViewById(R.id.gateway);
networkd = (WifiManager) getSystemService(Context.WIFI_SERVICE);
details = networkd.getDhcpInfo();
String test = intToIp(details.gateway);
gateway = "Default Gateway: "+String.valueOf(details.gateway);
boolean isAvailable = false;
isAvailable = InetAddress.getByName(test).isReachable(80); //trying to see if port open
if (isAvailable == true) {
GW.setText("port 21 is up");
}
} catch (Exception e) {
}
}
public String intToIp(int i) { //this converts the DHCP information (default gateway) into a readable network address
return (i & 0xFF)+ "." +
((i >> 8) & 0xFF) + "." +
((i >> 16) & 0xFF)+ "." +
((i >> 24) & 0xFF);
}
看着'isReachbable(80)',我覺得有必要指出的是,該參數是'超時value',_not端口number_。但不要介意,只是不要使用它。 – 2013-03-21 20:14:02