MQTT paho客户端使用

MQTT(Message Queuing Telemetry Transport,消息队列遥测传输)是IBM开发的一个即时通讯协议,有可能成为物联网的重要组成部分。该协议支持所有平台,几乎可以把所有联网物品和外部连接起来,被用来当做传感器和致动器(比如通过Twitter让房屋联网)的通信协议。
客户端API使用官方推荐的 Eclipse Paho

服务端
 1  package bsit.mqtt.demo.one_way;
  2 
  3  import org.eclipse.paho.client.mqttv3.MqttClient;
  4  import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
  5  import org.eclipse.paho.client.mqttv3.MqttDeliveryToken;
  6  import org.eclipse.paho.client.mqttv3.MqttException;
  7  import org.eclipse.paho.client.mqttv3.MqttMessage;
  8  import org.eclipse.paho.client.mqttv3.MqttPersistenceException;
  9  import org.eclipse.paho.client.mqttv3.MqttTopic;
10  import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;
11  /**
12  * 
13  * Title:Server
14  * Description: 服务器向多个客户端推送主题,即不同客户端可向服务器订阅相同主题
15  * @author chenrl
16  * 2016年1月6日下午3:29:28
17  */

18  public  class Server {
19 
20      public  static  final String HOST =  "tcp://192.168.1.3:61613";
21      public  static  final String TOPIC =  "toclient/124";
22      public  static  final String TOPIC125 =  "toclient/125";
23      private  static  final String clientid =  "server";
24 
25      private MqttClient client;
26      private MqttTopic topic;
27      private MqttTopic topic125;
28      private String userName =  "admin";
29      private String passWord =  "password";
30 
31      private MqttMessage message;
32 
33      public Server()  throws MqttException {
34          // MemoryPersistence设置clientid的保存形式,默认为以内存保存
35         client =  new MqttClient(HOST, clientid,  new MemoryPersistence());
36         connect();
37     }
38 
39      private  void connect() {
40         MqttConnectOptions  options =  new MqttConnectOptions();
41          options.setCleanSession( false);
42          options.setUserName(userName);
43          options.setPassword(passWord.toCharArray());
44          // 设置超时时间
45          options.setConnectionTimeout( 10);
46          // 设置会话心跳时间
47          options.setKeepAliveInterval( 20);
48          try {
49             client.setCallback( new PushCallback());
50             client.connect( options);
51             topic = client.getTopic(TOPIC);
52             topic125 = client.getTopic(TOPIC125);
53         }  catch (Exception e) {
54             e.printStackTrace();
55         }
56     }
57 
58      public  void publish(MqttTopic topic , MqttMessage message)  throws MqttPersistenceException,
59             MqttException {
60         MqttDeliveryToken token = topic.publish(message);
61         token.waitForCompletion();
62         System.out. println( "message is published completely! "
63                 + token.isComplete());
64     }
65 
66      public  static  void main(String[] args)  throws MqttException {
67         Server server =  new Server();
68 
69         server.message =  new MqttMessage();
70         server.message.setQos( 2);
71         server.message.setRetained( true);
72         server.message.setPayload( "给客户端124推送的信息".getBytes());
73         server.publish(server.topic , server.message);
74         
75         server.message =  new MqttMessage();
76         server.message.setQos( 2);
77         server.message.setRetained( true);
78         server.message.setPayload( "给客户端125推送的信息".getBytes());
79         server.publish(server.topic125 , server.message);
80 
81         System.out. println(server.message.isRetained() +  "------ratained状态");
82     }
83 }

客户端
  1  package bsit.mqtt.demo.one_way; 
  2   
  3  import java.util.concurrent.Executors; 
  4  import java.util.concurrent.ScheduledExecutorService; 
  5  import java.util.concurrent.TimeUnit; 
  6 
  7  import org.eclipse.paho.client.mqttv3.MqttClient; 
  8  import org.eclipse.paho.client.mqttv3.MqttConnectOptions; 
  9  import org.eclipse.paho.client.mqttv3.MqttException; 
10  import org.eclipse.paho.client.mqttv3.MqttSecurityException; 
11  import org.eclipse.paho.client.mqttv3.MqttTopic; 
12  import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;
13   
14  public  class Client { 
15   
16      public  static  final String HOST =  "tcp://192.168.1.3:61613"
17      public  static  final String TOPIC =  "toclient/124"
18      private  static  final String clientid =  "client124"
19      private MqttClient client; 
20      private MqttConnectOptions  options
21      private String userName =  "admin";
22      private String passWord =  "password";
23   
24      private ScheduledExecutorService scheduler; 
25   
26      private  void start() { 
27          try { 
28              // host为主机名,clientid即连接MQTT的客户端ID,一般以唯一标识符表示,MemoryPersistence设置clientid的保存形式,默认为以内存保存 
29             client =  new MqttClient(HOST, clientid,  new MemoryPersistence()); 
30              // MQTT的连接设置 
31              options =  new MqttConnectOptions(); 
32              // 设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,这里设置为true表示每次连接到服务器都以新的身份连接 
33              options.setCleanSession( true); 
34              // 设置连接的用户名 
35              options.setUserName(userName); 
36              // 设置连接的密码 
37              options.setPassword(passWord.toCharArray()); 
38              // 设置超时时间 单位为秒 
39              options.setConnectionTimeout( 10); 
40              // 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,但这个方法并没有重连的机制 
41              options.setKeepAliveInterval( 20); 
42              // 设置回调 
43             client.setCallback( new PushCallback()); 
44             MqttTopic topic = client.getTopic(TOPIC); 
45              //setWill方法,如果项目中需要知道客户端是否掉线可以调用该方法。设置最终端口的通知消息   
46              options.setWill(topic,  "close".getBytes(),  2true); 
47               
48             client.connect( options); 
49              //订阅消息 
50              int[] Qos  = { 1}; 
51             String[] topic1 = {TOPIC}; 
52             client.subscribe(topic1, Qos); 
53             
54         }  catch (Exception e) { 
55             e.printStackTrace(); 
56         } 
57     } 
58   
59      public  static  void main(String[] args)  throws MqttException {     
60         Client client =  new Client(); 
61         client.start(); 
62     } 
63 } 

回调类
  1  package bsit.mqtt.demo.one_way; 
  2   
  3  import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;
  4  import org.eclipse.paho.client.mqttv3.MqttCallback; 
  5  import org.eclipse.paho.client.mqttv3.MqttMessage; 
  6   
  7  /** 
 8  * 发布消息的回调类 
 9  *   
10  * 必须实现MqttCallback的接口并实现对应的相关接口方法CallBack 类将实现 MqttCallBack。 
11  * 每个客户机标识都需要一个回调实例。在此示例中,构造函数传递客户机标识以另存为实例数据。
12  * 在回调中,将它用来标识已经启动了该回调的哪个实例。 
13  * 必须在回调类中实现三个方法: 
14  *   
15  *  public void messageArrived(MqttTopic topic, MqttMessage message)接收已经预订的发布。 
16  *   
17  *  public void connectionLost(Throwable cause)在断开连接时调用。 
18  *   
19  *  public void deliveryComplete(MqttDeliveryToken token)) 
20  *  接收到已经发布的 QoS 1 或 QoS 2 消息的传递令牌时调用。 
21  *  由 MqttClient.connect 激活此回调。 
22  *   
23  */
   
24  public  class PushCallback  implements MqttCallback { 
25   
26      public  void connectionLost(Throwable cause) { 
27          // 连接丢失后,一般在这里面进行重连 
28         System.out. println( "连接断开,可以做重连"); 
29     } 
30     
31      public  void deliveryComplete(IMqttDeliveryToken token) {
32         System.out. println( "deliveryComplete---------" + token.isComplete()); 
33     }
34 
35      public  void messageArrived(String topic, MqttMessage message)  throws Exception {
36          // subscribe后得到的消息会执行到这里面 
37         System.out. println( "接收消息主题 : " + topic); 
38         System.out. println( "接收消息Qos : " + message.getQos()); 
39         System.out. println( "接收消息内容 : " +  new String(message.getPayload())); 
40     } 
41 }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值