In this example we are going to explain how to use MulticastSocket in Java, in order to enable a server to easily send information to multiple clients, which are all connected to the same port and address. We will describe the whole process, by creating both the server and the client, and guide you through the main concepts that need to be understood to create this type of applications.

1. MulticastSocket Server

We are going to use a DatagramSocket,  to enable the server to send packets of information to the client/clients. A datagram, by definition, is “an independent, self-contained message sent over the network whose arrival, arrival time, and content are not guaranteed”. Essentially, we are opening a DatagramSocket in order to send DatagramPacket messages to the client. We are using the datagram classes (instead of standard sockets) because they allow us to broadcast information to multiple clients, that are all connected to aMulticastSocket.

Let’s see the code of the server:

MulticastSocketServer.java

01 import java.io.IOException;
02 import java.net.DatagramPacket;
03 import java.net.DatagramSocket;
04 import java.net.InetAddress;
05 import java.net.UnknownHostException;
06  
07 public class MulticastSocketServer {
08      
09     final static String INET_ADDR = "224.0.0.3";
10     final static int PORT = 8888;
11  
12     public static void main(String[] args) throws UnknownHostException, InterruptedException {
13         // Get the address that we are going to connect to.
14         InetAddress addr = InetAddress.getByName(INET_ADDR);
15       
16         // Open a new DatagramSocket, which will be used to send the data.
17         try (DatagramSocket serverSocket = new DatagramSocket()) {
18             for (int i = 0; i < 5; i++) {
19                 String msg = "Sent message no " + i;
20  
21                 // Create a packet that will contain the data
22                 // (in the form of bytes) and send it.
23                 DatagramPacket msgPacket = new DatagramPacket(msg.getBytes(),
24                         msg.getBytes().length, addr, PORT);
25                 serverSocket.send(msgPacket);
26       
27                 System.out.println("Server sent packet with msg: " + msg);
28                 Thread.sleep(500);
29             }
30         catch (IOException ex) {
31             ex.printStackTrace();
32         }
33     }
34 }

One thing that we need to take into consideration here, is that there are specific addresses that allow us to use a MulticastSocket are limited, specifically in the range of 224.0.0.0 to 239.255.255.255. Some of them are reserved, like 224.0.0.0. The address that we are using, 224.0.0.3, can be used safely.

2. MulticastSocket Client

Regarding the client, we are going to move a little bit differently. We are going to create a client class, that will accept incoming messages from the server, and then we are going to duplicate this class. The point here is that by using the same code, we can connect to the server seamlessly, while having as many clients as we like.

Let’s see the code of the client:

MulticastSocketClient.java

01 import java.io.IOException;
02 import java.net.DatagramPacket;
03 import java.net.InetAddress;
04 import java.net.MulticastSocket;
05 import java.net.UnknownHostException;
06  
07 public class MulticastSocketClient {
08      
09     final static String INET_ADDR = "224.0.0.3";
10     final static int PORT = 8888;
11  
12     public static void main(String[] args) throws UnknownHostException {
13         // Get the address that we are going to connect to.
14         InetAddress address = InetAddress.getByName(INET_ADDR);
15          
16         // Create a buffer of bytes, which will be used to store
17         // the incoming bytes containing the information from the server.
18         // Since the message is small here, 256 bytes should be enough.
19         byte[] buf = new byte[256];
20          
21         // Create a new Multicast socket (that will allow other sockets/programs
22         // to join it as well.
23         try (MulticastSocket clientSocket = new MulticastSocket(PORT)){
24             //Joint the Multicast group.
25             clientSocket.joinGroup(address);
26       
27             while (true) {
28                 // Receive the information and print it.
29                 DatagramPacket msgPacket = new DatagramPacket(buf, buf.length);
30                 clientSocket.receive(msgPacket);
31  
32                 String msg = new String(buf, 0, buf.length);
33                 System.out.println("Socket 1 received msg: " + msg);
34             }
35         catch (IOException ex) {
36             ex.printStackTrace();
37         }
38     }
39 }

First, we start the client, which will keep waiting for incoming packets of information. As soon as we start the server, it will send the information packets and the client will receive them and print the information on the screen.

Server Output

1 Server sent packet with msg: Sent message no 0
2 Server sent packet with msg: Sent message no 1
3 Server sent packet with msg: Sent message no 2
4 Server sent packet with msg: Sent message no 3
5 Server sent packet with msg: Sent message no 4

Client Output

1 Socket 1 received msg: Sent message no 0
2 Socket 1 received msg: Sent message no 1
3 Socket 1 received msg: Sent message no 2
4 Socket 1 received msg: Sent message no 3
5 Socket 1 received msg: Sent message no 4

In order to use multiple clients, just create anew Java project and copy-paste the code of the client, but change the output to Socket 2instead of Socket 1. You will see that when the server runs, the messages will be sent to both clients, and both clients will print the same results (except for the socket number part). Take a look at this screenshot here. We are running the first client through eclipse, the second through the command line, and the server through the command line as well.

Running a server and 2 clients.

3. Download the project

This was an example of MulticastSocket usage in Java.

Download
You can download the full source code of this example here : MulticastSocketServerMulticastSocketClient

reference from:

http://examples.javacodegeeks.com/core-java/net/multicastsocket-net/java-net-multicastsocket-example/

java.net.MulticastSocket Example--reference的更多相关文章

  1. 自己挖坑自己跳 之JsonMappingException: (was java.lang.NullPointerException) (through reference chain:)

    在Web项目中,我们经常会设计一些与界面相对应的JavaBean作为Entity,而为了兼容前台传入的空值,有些字段我们会用包装类型而不是基本类型.可是往往我的Entity已经设计完成,很多时候我们会 ...

  2. Java中各种引用(Reference)解析

    目录 1,引用类型 2, FinalReference 2.1, Finalizer 3, SoftReference 4, WeakReference 5, PhantomReference 6, ...

  3. Java密码体系结构简介:Java Cryptography Architecture (JCA) Reference Guide

    来自Java官方的文档,作备忘使用. 简介: Java平台非常强调安全性,包括语言安全,密码学,公钥基础设施,认证,安全通信和访问控制. JCA是平台的一个主要部分,包含一个“提供者”体系结构和一组用 ...

  4. java 方法引用(method reference)

    it -> it != null等价于Objects::nonNull

  5. java之DatagramSocket、DatagramPackage丶MulticastSocket 广播学习

    1.基本概念: a.DatagramPacket与DatagramSocket位于java.net包中 b.DatagramPacket表示存放数据的数据报,DatagramSocket表示接受或发送 ...

  6. 理解java reference

    Java世界泰山北斗级大作<Thinking In Java>切入Java就提出“Everything is Object”.在Java这个充满Object的世界中,reference是一 ...

  7. java组播MulticastSocket

    在单播模式中有服务器端和客户端之分,而组播模式与单播模式不同,每个端都是以路由器或交换机做为中转广播站,任意一端向路由器或交换机发送消息,路由或交换机负责发送其他节点,每个节点都是同等的.所以在编程模 ...

  8. Java基本功—Reference

    这是一篇一年多之前便已写就的文章,那时,因为很多Java程序员只求追随新生的事物,却连基本的概念都没有,很多讨论中,很明显是基本功不过硬,于是萌生写一个系列文章,讨论Java的基本功,下面便是在这个想 ...

  9. Java Reference & ReferenceQueue一览

    Overview The java.lang.ref package provides more flexible types of references than are otherwise ava ...

随机推荐

  1. 小波 mallat 算法

    算法要求:输入序列是大于滤波器长度的偶数列 确实可以通过编程的手段使算法适合所有的情况,但本文章的目的是展示mallat算法的过程,所以就一切从简了 // Mallat.cpp : Defines t ...

  2. Qt远程机开发时光标注意问题

    最近项目中有一个比较奇怪的问题,就是当记录了最后的m_lastPos为当前widget中间位置之后,设置了QCursor也为当前中间位置. 这个时候当开始移动的时候,发现offset出现了很怪的极大值 ...

  3. 10个重要的Linux ps命令实战

    Linux作为Unix的衍生操作系统,Linux内建有查看当前进程的工具ps.这个工具能在命令行中使用. PS 命令是什么 查看它的man手册可以看到,ps命令能够给出当前系统中进程的快照.它能捕获系 ...

  4. 好用的JQ图片特效jquery-poptrox-popup-galleries

    jQuery Poptrox – Popup galleries     Rate this (1 Vote) Download   Demo jQuery Poptrox Adds popup ga ...

  5. 2015 偶数求和 AC 杭电

    偶数求和 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submi ...

  6. IDA6.6调试安卓程序配置教程

    1.把ida 目录下android_server传到设备的 /data/local/tmp/ cmd执行adb shell 进入模拟器命令行 su cd /data/local/tmp/ chmod ...

  7. Xcode升级导致插件失效的解决办法-b

    作为iOS界的攻城师,每一次水果发布新的Xcode开发版本时,我们都会跟进,然而那些好用的Xcode插件都会莫名的失灵...对此我各种百度,在这里,我将跟大家分享我是如何解决这些问题的.当然,我的方案 ...

  8. 构建高可用web站点学习(三)

    分布式的构建 做为网站访问的生命线(数据访问),当然也可以采用分布式的方法来减轻单台服务器的访问压力.之前有讲过Memcached的分布式,但是Memcached服务器互不通信,所以我们也提过redi ...

  9. 【Hybrid App】一个产品经理眼中的PhoneGap Vs. AppCan

    首先在写这篇文章前,必须先申明一下,本人是技术出身,对HTML技术及手机客户端都有过编程经验,只是出于工作岗位的变动,便没有再具体代码工作,以下文章涉及的中间件的基本代码实现及前期的API使用,都是自 ...

  10. BZOJ2718: [Violet 4]毕业旅行

    2718: [Violet 4]毕业旅行 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 229  Solved: 126[Submit][Status ...