java - 如何打印HiveMQ客户端中的所有主题? (MQTT)

标签 java mqtt hivemq

有没有办法打印 HiveMQ 代理存储的所有主题?我想在 HiveMQ 客户端的主类中打印出客户端连接到的所有主题以进行测试。我留下了 HiveMQ 客户端和社区(代理)的链接。

HiveMQ:

https://github.com/hivemq/hivemq-community-edition https://github.com/hivemq/hivemq-mqtt-client

我的 HiveMQ 客户端主类中的代码:

package com.main;

import java.util.UUID;

import com.hivemq.client.mqtt.MqttGlobalPublishFilter;
import com.hivemq.client.mqtt.datatypes.MqttQos;
import com.hivemq.client.mqtt.mqtt5.Mqtt5BlockingClient;
import com.hivemq.client.mqtt.mqtt5.Mqtt5BlockingClient.Mqtt5Publishes;
import com.hivemq.client.mqtt.mqtt5.Mqtt5Client;
import com.hivemq.client.mqtt.mqtt5.message.publish.Mqtt5Publish;
import java.util.logging.Logger;
import java.util.NoSuchElementException;

import java.util.logging.Level;
import java.util.concurrent.TimeUnit;


public class Main {

    private static final Logger LOGGER = Logger.getLogger(Main.class.getName());  // Creates a logger instance 


    public static void main(String[] args) {

                Mqtt5BlockingClient client1 = Mqtt5Client.builder()
            .identifier(UUID.randomUUID().toString()) // the unique identifier of the MQTT client. The ID is randomly generated between 
            .serverHost("localhost")  // the host name or IP address of the MQTT server. Kept it 0.0.0.0 for testing. localhost is default if not specified.
            .serverPort(1883)  // specifies the port of the server
            .buildBlocking();  // creates the client builder

            client1.connect();  // connects the client
            System.out.println("Client1 Connected");
            System.out.println(client1.toString());


            String testmessage = "How is it going!";
            byte[] messagebytesend = testmessage.getBytes();   // stores a message as a byte array to be used in the payload 

    try {  

        Mqtt5Publishes publishes = client1.publishes(MqttGlobalPublishFilter.ALL);  // creates a "publishes" instance thats used to queue incoming messages

            client1.subscribeWith()  // creates a subscription 
            .topicFilter("test1/#")  // filters to receive messages only on this topic (# = Multilevel wild card, + = single level wild card)
            .qos(MqttQos.AT_LEAST_ONCE)  // Sets the QoS to 2 (At least once) 
            .send(); 
            System.out.println("The client1 has subscribed");


            client1.publishWith()  // publishes the message to the subscribed topic 
            .topic("test/pancakes/topic")   // publishes to the specified topic
            .qos(MqttQos.AT_LEAST_ONCE)  
            .payload(messagebytesend)  // the contents of the message 
            .send();
            System.out.println("The client1 has published");


            Mqtt5Publish receivedMessage = publishes.receive(5,TimeUnit.SECONDS).get(); // receives the message using the "publishes" instance waiting up to 5 seconds                                                                          // .get() returns the object if available or throws a NoSuchElementException 


         byte[] tempdata = receivedMessage.getPayloadAsBytes();    // converts the "Optional" type message to a byte array 
         System.out.println();
         String getdata = new String(tempdata); // converts the byte array to a String 
         System.out.println(getdata);


    }

    catch (InterruptedException e) {    // Catches interruptions in the thread 
        LOGGER.log(Level.SEVERE, "The thread was interrupted while waiting for a message to be received", e);
        }

    catch (NoSuchElementException e){
        System.out.println("There are no received messages");   // Handles when a publish instance has no messages 
    }

    client1.disconnect();  
    System.out.println("Client1 Disconnected");

    }

}

最佳答案

Is there a way to print all of the topics that the HiveMQ broker has stored?

没有。 MQTT 中不存在“给我一个代理中所有主题的列表”这样的事情。

您的代码可以订阅所有“Activity ”主题,但这确实意味着您将捕获所有主题,除非您让代码 7/24 运行数月或数年。

只需将您的订阅更改为以下内容即可:

client1.subscribeWith().topicFilter("#")

现在,您的代码将获取发布者正在发布到的所有“Activity ”主题的消息。请预先警告,您的代码每秒可能会收到数千条消息,并且可能许多消息都针对同一主题。因此,您需要将其过滤掉。

关于java - 如何打印HiveMQ客户端中的所有主题? (MQTT),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56518849/

相关文章:

java - 如何修复 HiveMQ 中未解析的 DaggerSingletonComponent(MQTT 协议(protocol))

java - 使用子类的类型或其父类(super class)的类型创建子类对象

java - 尝试在 3D 世界中发射子弹。在 x 和 z 中遇到奇怪的偏移

java - MQTT 消息到 JSONObject

mqtt - 设计mqtt主题的好方法?

java - hivemq非法状态异常

java - 从远程 .jar 创建运行时环境

java - 从 java servlet 访问环境变量

java - 使用单一连接实例实现 Eclipse MQTT Android 客户端

javascript - MQTT PUBACK 网络套接字