java 网络编程基础

Posted vector11248

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 网络编程基础相关的知识,希望对你有一定的参考价值。

 InetAddress ip = InetAddress.getByName("www.baidu.com");

        System.out.println("是否可达: "+ip.isReachable(2000));

        System.out.println(ip.getHostAddress());

        InetAddress local = InetAddress.getByAddress(new byte[]{127,0,0,1});

        System.out.println("本机是否可达:" + local.isReachable(5000));

        //获取IP的全限定域名
        System.out.println(local.getCanonicalHostName());

        //当涉及到普通字符串与非西欧字符串的相关转换时,可以用URLEncoder和URLDecoder

        String ChineseUrl = URLEncoder.encode("青岛","GBK");

        System.out.println(ChineseUrl);

        System.out.println(URLDecoder.decode(ChineseUrl,"GBK"));

 

以上是关于java 网络编程基础的主要内容,如果未能解决你的问题,请参考以下文章

JSP编程专题1之JSP基础

Java语言基础之方法的设计

20155307刘浩《网络对抗》逆向及Bof基础

JSP基础

20155311高梓云《网络对抗》逆向及Bof基础

20145301赵嘉鑫《网络对抗》逆向及Bof基础