Comment obtenir des détails sur les masques de passerelle et de sous-réseau dans Android?
J'ai trouvé une classe appelée DhcpInfo
dans le Android.net
paquet. Il a des variables publiques qui stockent les valeurs des paramètres réseau actuels. Mais le problème est qu'ils retournent la valeur en entier converti en binaire décalé de 8 bits.
Exemple d'image décrivant le scénario:
**** Voici un exemple de code: **
** Fichier 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);
}
}
Codage 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>
J'ai essayé de convertir la valeur entière en son équivalent mais je n'ai pas pu. Si vous le faites, vous pouvez poster. Au revoir ..
MISE À JOUR: Certains comment réussi à convertir l'IP au format v4 à partir de la forme entière Conversion au format IPv4:
public String intToIp(int i) {
return ((i >> 24 ) & 0xFF ) + "." +
((i >> 16 ) & 0xFF) + "." +
((i >> 8 ) & 0xFF) + "." +
( i & 0xFF) ;
}
IMAGE Courtoisie: http://www.bennadel.com/blog/1830-Converting-IP-Addresses-To-And-From-Integer-Values-With-ColdFusion.htm
Formatter.formatIpAddress (int) est obsolète, et nous ne voulons pas utiliser de méthodes obsolètes, n'est-ce pas?
La version d'AndroidKid est inversée, mais cela devrait le corriger:
public String intToIp(int addr) {
return ((addr & 0xFF) + "." +
((addr >>>= 8) & 0xFF) + "." +
((addr >>>= 8) & 0xFF) + "." +
((addr >>>= 8) & 0xFF));
}
Source: http://www.devdaily.com/Java/jwarehouse/Android/core/Java/Android/net/DhcpInfo.Java.shtml
pour formater l'ip, essayez d'utiliser:
import Android.text.format.Formatter;
public String FormatIP(int IpAddress)
{
return Formatter.formatIpAddress(IpAddress);
}
Utilisez Formatter.formatIpAddress(mask);
mask est votre int.
String maskk = Formatter.formatIpAddress(mask);
Au lieu d'obtenir 255.255.255.0, il suffit de changer l'ordre en retour;) Ainsi vous pourrez vous mettre dans le bon ordre ...
public String intToIp(int i) {
return (i & 0xFF) + "." +
((i >> 8 ) & 0xFF) + "." +
((i >> 16 ) & 0xFF) + "." +
((i >> 24 ) & 0xFF) ;
}
Ceci est un ancien Thread, mais j'ai trouvé la fonction officielle utilisée par Android API (package 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();
}
}
Et une fois que vous avez InetAddress
, vous pouvez obtenir la chaîne formatée de cette façon:
intToInetAddress(d.gateway).getHostAddress()