当前位置:  技术问答>java相关

怎么可能老是出错?

    来源: 互联网  发布时间:2015-02-16

    本文导语:  这是我写一个程序,看看哪里出错了,我总是找不出错误。thxpackage net; import java.net.*; public class IPAddressSeek {  public IPAddressSeek()  {  super();  }  public static void main(String[] args)  {  InetAddress hostAddress;  byte[] integer...

这是我写一个程序,看看哪里出错了,我总是找不出错误。thxpackage net;
import java.net.*;
public class IPAddressSeek
{
 public IPAddressSeek()
 {
 super();
 }
 public static void main(String[] args)
 {
 InetAddress hostAddress;
 byte[] integer_address;
 if (args.length==0)
  {
  try
   {
    hostAddress=InetAddress.getLocalHost();
    integer_address=hostAddress.getAddress();
    System.out.println("The domain name of localhost is:nttt"+hostAddress.getHostname());
    System.out.println("The IPAddress of localHost in the form of standardDot is:nttt"+hostAddress.getHostAddress());
    System.out.println("The IPaddress of localhost in the form of 4_integer_byte is:nttt"+integer_address[0]+"t"+integer_address[1]+"t"+integer_address[2]+"t"+integer_address[3]);
   }catch(UnknowHostException e)
   {e.printStackTrace();}
  }else
  {
  try
   {
    hostAddress=InetAddress.getByName(args[0]);
    integer_address=hostAddress.getAddress();
    System.out.println("The domain name of localhost is:nttt"+hostAddress.getHostname());
    System.out.println("The IPAddress of localHost in the form of standardDot is:nttt"+hostAddress.getHostAddress());
    System.out.println("The IPaddress of localhost in  the form of 4_integer_byte is:nttt"+ integer_address[0]+"t"+integer_address[1]+"t"+  integer_address[2]+"t"+integer_address[3]);
   }catch(UnknowHostException e)
   {e.printStackTrace();}

  }
 }
}

|
God, you are lazy,

change "UnknowHostException" to "UnknownHostException"
change "getHostname" to "getHostName"

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • C++ Strings(字符串) 成员 max_size():返回字符的最大可能个数
  • 请问怎么对一个数组排序,数组的内容是字符串,可能是单个也可能是多个?
  • spring的事务类型及spring和hibernate可能导致的问题分析
  • 单条汇编语句是否可能因线程切换而被打断?
  • ssh 远程登陆,没反映。可能是什么原因?
  • 比较高级的问题哦,就是不知道可不可能?
  • 虽然可能很少有人知道,但还是要问,高手快来!!!
  • 在一台SUN上用ifconfig看到mac地址是0,不太可能吧
  • 可能的问题??
  • 问题可能有点怪
  • 父进程关闭的同时,有没有可能不关闭子进程?
  • 很奇怪的问题,可能是我的知识面不广。
  • 机子可能被人黑了,怎样才能找回ROOT的密码进去??
  • 任何将内核编译为不支持版本控制可能?
  • 请问exec系列函数在执行时是立即返回还是有可能阻塞那?
  • 移动开发 iis7站长之家
  • 多线程socket申请有无可能产生冲突?
  • 可以ping通路由器,但是ping不通外部地址可能是什么原因?
  • 求牛人centos 5.6 死机 无法进入系统 或提供可能的解决方法
  • 请问调用数据库可更新结果集的resultSet.deleteRow()不成功可能是什么原因?
  • 软硬件速度不匹配时,有没有可能引起重启?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,