InetAddress.getLocalHost() または InetAddress.getByName(String host) を実行しようとすると、nba.com のような既知の Web サイトであっても毎回例外がスローされるという問題があります4.1.1 GS3 と wifi とモバイル ネットワークがオンになっています。以下のコード
try{
InetAddress ownIP=InetAddress.getLocalHost();
System.out.println("IP of my Android := "+ownIP.getHostAddress());
}catch (Exception e){
System.out.println("Exception caught ="+e.getMessage());
String t = e.getMessage() + "yes";
}
以下はSystem.outです
03-12 18:59:52.636: I/System.out(18996): 例外がキャッチされました =null
前もって感謝します