MQTT的简单使用

//第一步导包

<dependencies>
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
<version>1.2.2</version>
</dependency>
</dependencies>

//第二部写一个订阅端 这里连接的路径你的自己启动一个EMQX服务器 具体怎么装 百度。 有Linux版本和windows版本
package mqtt2;

import org.eclipse.paho.client.mqttv3.*;
import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;

/**
*订阅端
*/
public class SubscribeSample {

public static void main(String[] args) throws MqttException {
String HOST = "tcp://127.0.0.1:1883";
String TOPIC = "testtopic/test";
int qos = 1;
String clientid = "subClient";
String userName = "test";
String passWord = "test";
try {
// host为主机名,test为clientid即连接MQTT的客户端ID,一般以客户端唯一标识符表示,MemoryPersistence设置clientid的保存形式,默认为以内存保存
MqttClient client = new MqttClient(HOST, clientid, new MemoryPersistence());
// MQTT的连接设置
MqttConnectOptions options = new MqttConnectOptions();
// 设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,这里设置为true表示每次连接到服务器都以新的身份连接
options.setCleanSession(true);
// 设置连接的用户名
options.setUserName(userName);
// 设置连接的密码
options.setPassword(passWord.toCharArray());
// 设置超时时间 单位为秒
options.setConnectionTimeout(10);
// 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,但这个方法并没有重连的机制
options.setKeepAliveInterval(20);
// 设置回调函数
client.setCallback(new MqttCallback() {

public void connectionLost(Throwable cause) {
System.out.println("connectionLost");
}

public void messageArrived(String topic, MqttMessage message) throws Exception {
System.out.println("topic:"+topic);
System.out.println("Qos:"+message.getQos());
System.out.println("----------");
ChuliDemo.ChuliDemo(new String(message.getPayload()));
System.out.println("message content:"+new String(message.getPayload()));

}

public void deliveryComplete(IMqttDeliveryToken token) {
System.out.println("deliveryComplete---------"+ token.isComplete());
}

});
client.connect(options);
//订阅消息
client.subscribe(TOPIC, qos);

// 消息发布所需参数
MqttMessage message = new MqttMessage("helloworld".getBytes());
message.setQos(qos);
client.publish(TOPIC, message);
System.out.println("Message published");

//这里已开启他就会自动关闭了
// client.disconnect();
// client.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}


这里可以尝试装两个工具来进行测试 EMQX和MQTTX

MQTT的简单使用

 

 

MQTT的简单使用

 

 



上一篇:MQTT协议在STM32上的移植


下一篇:KebeEdge简介,优势及应用场景,特点