Java 网络编程TCP Socket,ServerSocket 测试 | UDP,URL的使用

本文详细介绍了Java中的网络编程,包括TCP的InetAddress和InetSocketAddress测试,客户端与服务端的通信及文件传输案例。此外,还讲解了UDP的消息发送与接收、循环发送和线程对话案例。最后,通过URL展示了如何下载网络资源。
摘要由CSDN通过智能技术生成

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


网络编程

  • TCP/IP
  • UDP

TCP


测试:InetAddress


public class TestInetAddress {
   
    public static void main(String[] args) {
   
        // 查询本机ip
        try {
   
            InetAddress inet1 = InetAddress.getByName("127.0.0.1");
            System.out.println(inet1);

            InetAddress inet2 = InetAddress.getByName("localhost");
            System.out.println(inet2);

            InetAddress inet3 = InetAddress.getLocalHost();
            System.out.println(inet3);

            // 查询网站ip
            InetAddress byName = InetAddress.getByName("www.baidu.com");
            System.out.println(byName);


        } catch (UnknownHostException e) {
   
            throw new RuntimeException(e);
        }

    }
}

测试 InetSocketAddress


public class TestInetSocketAddress {
   
    public static void main(String[] args) {
   
        InetSocketAddress address = new InetSocketAddress("127.0.0.1", 8080);
        InetSocketAddress address1 = new InetSocketAddress("localhost", 8080);
        System.out.println(address);
        System.out.println(address1);

        System.out.println(address.getAddress());
        System.out.println(address.getHostName()); // 获得地址
        System.out.println(address.getPort()); // 获得端口号

    }
}

客户端与服务端通信


客户端

public class TcpClientDemo01 {
   
    public static void main(String[] args) {
   
        Socket socket = null;
        OutputStream os = null;
        try {
   
            // 1.要知道服务端的 ip 和 端口号
            InetAddress serverIP = InetAddress.getByName("127.0.0.1");
            int port = 9898;
            // 2.创建一个连接
            socket = new Socket(serverIP, port);

            // 3.发送消息, IO流
            os = socket.getOutputStream();
            os.write("你好,欢迎学习Java!".getBytes());

        } catch (Exception e) {
   
            throw new RuntimeException(e);
        } finally {
   
            if (os != null) {
   
                try {
   
                    os.close();
                } catch (IOException e) {
   
                    throw new RuntimeException(e);
                }
            }
            if (socket != null) {
   
                try {
   
                    socket.close();
                } catch (IOException e) {
   
                    throw new RuntimeException(e);
                }
            }

        }
    }
}

服务端


public class TcpServerDemo01 {
   
    private static InputStream is = null;
    private static ByteArrayOutputStream baos = null;

    public static void main(String[] args) {
   
        ServerSocket serverSocket = null;
        Socket accept = null;
        try {
   
            // 1.我得有一个地址
            serverSocket = new ServerSocket(9898);
            while (true) {
   
                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值