Androidでゲートウェイとサブネットマスクの詳細を取得するにはどうすればよいですか?
Android.net
パッケージ内でDhcpInfo
というクラスを見つけました。現在のネットワークパラメータの値を格納するいくつかのパブリック変数があります。しかし問題は、8Bitシフトされたバイナリから変換された整数で値を返すことです。
シナリオを説明するサンプル画像:
****サンプルコードは次のとおりです:**
** Javaファイル:****
package com.schogini.dhcp;
import Android.app.Activity;
import Android.content.Context;
import Android.os.Bundle;
import Android.widget.TextView;
import Android.net.*;
import Android.net.wifi.WifiManager;
public class dhcpInfo extends Activity {
public String s_dns1 ;
public String s_dns2;
public String s_gateway;
public String s_ipAddress;
public String s_leaseDuration;
public String s_netmask;
public String s_serverAddress;
TextView info;
DhcpInfo d;
WifiManager wifii;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
wifii= (WifiManager) getSystemService(Context.WIFI_SERVICE);
d=wifii.getDhcpInfo();
s_dns1="DNS 1: "+String.valueOf(d.dns1);
s_dns2="DNS 2: "+String.valueOf(d.dns2);
s_gateway="Default Gateway: "+String.valueOf(d.gateway);
s_ipAddress="IP Address: "+String.valueOf(d.ipAddress);
s_leaseDuration="Lease Time: "+String.valueOf(d.leaseDuration);
s_netmask="Subnet Mask: "+String.valueOf(d.netmask);
s_serverAddress="Server IP: "+String.valueOf(d.serverAddress);
//dispaly them
info= (TextView) findViewById(R.id.infolbl);
info.setText("Network Info\n"+s_dns1+"\n"+s_dns2+"\n"+s_gateway+"\n"+s_ipAddress+"\n"+s_leaseDuration+"\n"+s_netmask+"\n"+s_serverAddress);
}
}
xmlコーディング:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
package="com.schogini.dhcp"
Android:versionCode="1"
Android:versionName="1.0">
<uses-sdk Android:minSdkVersion="4" />
<application Android:icon="@drawable/icon" Android:label="@string/app_name">
<activity Android:name=".dhcpInfo"
Android:label="@string/app_name">
<intent-filter>
<action Android:name="Android.intent.action.MAIN" />
<category Android:name="Android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission Android:name="Android.permission.ACCESS_NETWORK_STATE" />
<uses-permission Android:name="Android.permission.ACCESS_WIFI_STATE" />
</manifest>
整数値を同等の値に変換しようとしましたが、できませんでした。その場合は、ポストバックできます。
更新:IPをv4形式に整数形式からIPv4形式に変換する方法:
public String intToIp(int i) {
return ((i >> 24 ) & 0xFF ) + "." +
((i >> 16 ) & 0xFF) + "." +
((i >> 8 ) & 0xFF) + "." +
( i & 0xFF) ;
}
Formatter.formatIpAddress(int)は非推奨です。非推奨のメソッドを使用したくありませんか?
AndroidKidのこのバージョンは何らかの形で逆になっていますが、これで修正されるはずです。
public String intToIp(int addr) {
return ((addr & 0xFF) + "." +
((addr >>>= 8) & 0xFF) + "." +
((addr >>>= 8) & 0xFF) + "." +
((addr >>>= 8) & 0xFF));
}
ソース: http://www.devdaily.com/Java/jwarehouse/Android/core/Java/Android/net/DhcpInfo.Java.shtml
iPをフォーマットするには、次を使用してみてください:
import Android.text.format.Formatter;
public String FormatIP(int IpAddress)
{
return Formatter.formatIpAddress(IpAddress);
}
Use Formatter.formatIpAddress(mask);
maskはintです。
String maskk = Formatter.formatIpAddress(mask);
255.255.255.0を取得する代わりに、代わりに順序を変更するだけです;)したがって、正しい順序で取得することができます...
public String intToIp(int i) {
return (i & 0xFF) + "." +
((i >> 8 ) & 0xFF) + "." +
((i >> 16 ) & 0xFF) + "." +
((i >> 24 ) & 0xFF) ;
}
これは古いスレッドですが、Android API(パッケージ_Android.net.NetworkUtils
_)によって使用される公式関数を見つけました:
_/**
* Convert a IPv4 address from an integer to an InetAddress.
* @param hostAddress an int corresponding to the IPv4 address in network byte order
*/
public static InetAddress intToInetAddress(int hostAddress) {
byte[] addressBytes = { (byte)(0xff & hostAddress),
(byte)(0xff & (hostAddress >> 8)),
(byte)(0xff & (hostAddress >> 16)),
(byte)(0xff & (hostAddress >> 24)) };
try {
return InetAddress.getByAddress(addressBytes);
} catch (UnknownHostException e) {
throw new AssertionError();
}
}
_
そして、InetAddress
を取得したら、次のようにフォーマットされた文字列を取得できます。
intToInetAddress(d.gateway).getHostAddress()