android mqtt详解_Android mqtt入门 Android studio(转)

Android mqtt入门 Android studio

2018年04月09日 14:02:30 hbw020 阅读数:1564

分享 mqtt简单使用介绍:

1、as创建工程

2、官网下载mqtt支持包放入lib文件,点击打开链接,https://repo.eclipse.org/content/repositories/paho-releases/org/eclipse/paho/org.eclipse.paho.client.mqttv3/1.2.0/。当前使用的是:

org.eclipse.paho.client.mqttv3-1.2.0.jar

3、然后开始工作:

import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;import org.eclipse.paho.client.mqttv3.MqttCallback;import org.eclipse.paho.client.mqttv3.MqttClient;import org.eclipse.paho.client.mqttv3.MqttConnectOptions;import org.eclipse.paho.client.mqttv3.MqttException;import org.eclipse.paho.client.mqttv3.MqttMessage;import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;import java.util.concurrent.Executors;import java.util.concurrent.ScheduledExecutorService;import java.util.concurrent.TimeUnit;/***全局主服务分发和接收mqtt消息*/public class MQTTServiceextends Service {private static final StringTAG="MQTTService";    public final StringSERVICE_CLASSNAME ="de.eclipsemagazin.mqtt.push.MQTTService";    private Handlerhandler;    //    private String host = "tcp://192.168.2.151:1883";//    private String userName = "admin";//    private String passWord = "password";    private int i =1;    private static MqttClientclient;    //    private String myTopic = "qaiot/user/f5c71e03-c324-4b32-823c-563471e86da9";//    private String myTopic = "qaiot/user/f5c71e03-c324-4b32";    private StringmyTopic ="qaiot/server/user/1.0/cn";    StringclientId ="qaiot/user/f5c71e03-c324-4b32";    private MqttConnectOptionsoptions;    private static ScheduledExecutorServicescheduler;    public JooanMQTTService() {    }@Override    public IBinderonBind(Intent intent) {// TODO: Return the communication channel to the service.throw new UnsupportedOperationException("Not yet implemented");    }@Override    public void onCreate() {super.onCreate();        initMqttClient();        handler =new Handler() {@Override            public void handleMessage(Message msg) {super.handleMessage(msg);                if (msg.what ==1) {                    Toast.makeText(JooanApplication.get(), (String) msg.obj, Toast.LENGTH_SHORT).show();                    NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);                    Notification notification =new Notification(R.drawable.menu_item_small_bg, "Mqtt即时推送", System.currentTimeMillis());//                    notification.contentView = new RemoteViews("com.hxht.testmqttclient", R.layout.activity_notification);                    notification.contentView =new RemoteViews("com.jooan.qiaoanzhilian", R.layout.service_jooan_mqtt_notification);                    notification.contentView.setTextViewText(R.id.tv_desc, (String) msg.obj);                    notification.defaults = Notification.DEFAULT_SOUND;                    notification.flags = Notification.FLAG_AUTO_CANCEL;                    manager.notify(i++, notification);                    Log.e(TAG, "Mqtt收到推送结果: " + (String) msg.obj);                }else if (msg.what ==2) {                    Log.i(TAG, "连接成功");                    Toast.makeText(JooanApplication.get(), "连接成功", Toast.LENGTH_SHORT).show();                    try {client.subscribe(clientId, 1);                    }catch (Exception e) {                        e.printStackTrace();                    }                }else if (msg.what ==3) {                    Toast.makeText(JooanApplication.get(), "连接失败,系统正在重连", Toast.LENGTH_SHORT).show();                    Log.i(TAG, "连接失败,系统正在重连");                }            }        };        startReconnect();    }private void initMqttClient() {try {//host为主机名,test为clientid即连接MQTT的客户端ID,一般以客户端唯一标识符表示,MemoryPersistence设置clientid的保存形式,默认为以内存保存            client=new MqttClient(JooanApplication.get().BROKER_URL, myTopic, new MemoryPersistence());            //MQTT的连接设置            options =new MqttConnectOptions();            //设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,这里设置为true表示每次连接到服务器都以新的身份连接            options.setCleanSession(true);            //设置连接的用户名            options.setUserName(JooanApplication.get().userName);            //设置连接的密码            options.setPassword(JooanApplication.get().passWord.toCharArray());            // 设置超时时间 单位为秒            options.setConnectionTimeout(10);            // 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,但这个方法并没有重连的机制            options.setKeepAliveInterval(20);//            options.setWill();//如果项目中需要知道客户端是否掉线可以调用该方法            //设置回调            client.setCallback(new MqttCallback() {@Override                public void connectionLost(Throwable cause) {//连接丢失后,一般在这里面进行重连                    Log.w(TAG, "connectionLost----------: " + cause.getMessage());                }@Override                public void messageArrived(String topic, MqttMessage message)throws Exception {//subscribe后得到的消息会执行到这里面                    Log.w(TAG, "messageArrived---------- ");                    Message msg =new Message();                    msg.what =1;                    msg.obj = topic +"---" + message.toString();                    handler.sendMessage(msg);                }@Override                public void deliveryComplete(IMqttDeliveryToken token) {//publish后会执行到这里                    Log.w(TAG, "deliveryComplete---------: " + token.isComplete());                }            });        }catch (Exception e) {            e.printStackTrace();        }    }private void startReconnect() {scheduler= Executors.newSingleThreadScheduledExecutor();        scheduler.scheduleAtFixedRate(new Runnable() {@Override            public void run() {if (!client.isConnected()) {                    connect();                }            }        }, 0 *1000, 10 *1000, TimeUnit.MILLISECONDS);    }private void connect() {new Thread(new Runnable() {@Override            public void run() {try {client.connect(options);                    Message msg =new Message();                    msg.what =2;                    handler.sendMessage(msg);                }catch (Exception e) {                    e.printStackTrace();                    Message msg =new Message();                    msg.what =3;                    handler.sendMessage(msg);                }            }        }).start();    }//    判断服务是否运行中    private boolean serviceIsRunning() {        ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);        for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {if (SERVICE_CLASSNAME.equals(service.service.getClassName())) {return true;            }        }return false;    }public static void stopJooanMQTTService() {if (client!=null) {try {client.disconnect();            }catch (Exception e) {                e.printStackTrace();            }        }if (scheduler!=null) {try {scheduler.shutdown();            }catch (Exception e) {                e.printStackTrace();            }        }    }}

import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;import org.eclipse.paho.client.mqttv3.MqttCallback;import org.eclipse.paho.client.mqttv3.MqttException;import org.eclipse.paho.client.mqttv3.MqttMessage;/***发布消息的回调类**必须实现MqttCallback的接口并实现对应的相关接口方法*      ◦CallBack类将实现MqttCallBack。每个客户机标识都需要一个回调实例。在此示例中,构造函数传递客户机标识以另存为实例数据。*在回调中,将它用来标识已经启动了该回调的哪个实例。*  ◦必须在回调类中实现三个方法:**http://topmanopensource.iteye.com/blog/1700424*@authorlonggangbai*/public class MQTTPushCallbackimplements MqttCallback {private static final StringTAG="PushCallback";    private ContextWrappercontext;    public JooanMQTTPushCallback(ContextWrapper context) {this.context = context;    }/***接收到消息的回调的方法:接收已经预订的发布*/@Override    public void messageArrived(String topic, MqttMessage message)throws Exception {//subscribe(订阅主题)后得到的消息会执行到这里面//        final NotificationManager notificationManager = (NotificationManager)//                context.getSystemService(Context.NOTIFICATION_SERVICE);        final Notification notification = new Notification(R.drawable.snow,//                "Black Ice Warning!", System.currentTimeMillis());        // Hide the notification after its selected//        notification.flags |= Notification.FLAG_AUTO_CANCEL;        final Intent intent = new Intent(context, BlackIceActivity.class);//        final PendingIntent activity = PendingIntent.getActivity(context, 0, intent, 0);//        notification.setLatestEventInfo(context, "Black Ice Warning", "Outdoor temperature is " +//                new String(message.getPayload()) + "°", activity);//        notification.number += 1;//        notificationManager.notify(0, notification);        Log.w(TAG, "messageArrived: " +"topicName:" + topic +",messageArrived,订发送消息失败: " +new String(message.getPayload()));    }/***接收到已经发布的QoS 1或QoS 2消息的传递令牌时调用。*@paramtoken由MqttClient.connect激活此回调。*/@Override    public void deliveryComplete(IMqttDeliveryToken token) {//We do not need this because we do not publish//publish(发送消息)后会执行到这里        try {            Log.i("PushCallback", "deliveryComplete: " + token.getMessage().toString());        }catch (MqttException e) {            e.printStackTrace();        }try {            Log.i(TAG,"Delivery token \"" + token.hashCode());            System.out.println("订阅主题: " + token.getMessageId());            System.out.println("消息数据: " + token.getTopics().toString());            System.out.println("消息级别(0,1,2): " + token.getGrantedQos().toString());            System.out.println("是否是实时发送的消息(false=实时,true=服务器上保留的最后消息): " + token.isComplete());        }catch (Exception e) {            e.printStackTrace();        }    }/***当客户机和broker意外断开时触发*可以再此处理重新订阅*/@Override    public void connectionLost(Throwable cause) {//We should reconnect here  //连接丢失后,一般在这里面进行重连        Log.w(TAG, "connectionLost: " + cause.getMessage());        cause.printStackTrace();    }}

activity调用发送消息(主题和消息主题与服务器定义一致):

public String BROKER_URL = "tcp://192.168.1.151:1883";//broker host服务器地址

private MqttClient mqttClient;

private String clientId = "qaiot/user/f5c71e03-c324-4b32";

private String TOPIC = "qaiot/server/user/1.0/cn";

@Override

protected void onCreate(Bundle savedInstanceState) {//启动服务

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_jooan_login);

startService(new Intent(this,MQTTService.class));

}

//发送消息代码:

new Thread(new Runnable() {

@Override

public void run() {

LogUtil.i("开始登录");

try {

//创建MqttClient对象

mqttClient = new MqttClient(JooanApplication.get().BROKER_URL, clientId, new MemoryPersistence());

//MqttClient绑定

mqttClient.setCallback(new JooanMQTTPushCallback(JooanLoginActivity.this));

//                    ---------------------------------------------------------------

//                    MqttConnectOptions connOpts = new MqttConnectOptions();

//                    connOpts.setCleanSession(true);

//                    System.out.println("Connecting to broker: "+BROKER_URL);

//                    mqttClient.connect(connOpts);

//                    System.out.println("Connected");

//                    System.out.println("Publishing message: "+"Message from MqttPublishSample");

//                    ---------------------------------------------------------------

//MqttClient绑定

mqttClient.connect();

//Subscribe to all subtopics of homeautomation

//                    mqttClient.subscribe(TOPIC);

//创建MQTT相关的主题

MqttTopic temperatureTopic = mqttClient.getTopic(TOPIC);

Gson gson = new Gson();

String toJson = gson.toJson(getData());

Log.e("MQTTService", "gson对象:" + toJson);

//创建MQTT的消息体

MqttMessage message = new MqttMessage(toJson.getBytes());

//设置消息传输的类型:消息级别(0,1,2)

message.setQos(1);

//设置是否在服务器中保存消息体

message.setRetained(false);

//设置消息的内容

//                    message.setPayload(WSMQTTServerCommon.publication.getBytes());

//发送消息并获取回执

MqttDeliveryToken token = temperatureTopic.publish(message);//发送消息

//                    token.waitForCompletion();设置超时

System.out.println("Publishing \"" + message.toString()

+ "\" on topic \"" + temperatureTopic.getName() + "\" with QoS = "

+ message.getQos());

System.out.println("For client instance \"" + mqttClient.getClientId()

+ "\" on address " + mqttClient.getServerURI() + "\"");

System.out.println("With delivery token \"" + token.hashCode()

+ " delivered: " + token.isComplete());

//关闭连接

//                    if (mqttClient.isConnected())

//                        mqttClient.disconnect(Integer.parseInt(System.getProperty("timeout", "10000")));

//                    Log.i(TAG, "发送消息的超时时间: "+Integer.parseInt(System.getProperty("timeout", "10000")));

} catch (MqttException e) {

Toast.makeText(getApplicationContext(), "Something went wrong!" + e.getMessage(), Toast.LENGTH_LONG).show();

e.printStackTrace();

LogUtil.i(e.getMessage());

}

}

}).start();

@Override

protected void onDestroy() {

super.onDestroy();

recycler_view.clearOnScrollListeners();

JooanMQTTService.stopMQTTService();//停止服务

Intent intent = new Intent(this, MQTTService.class);

stopService(intent);

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/533789.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jupyter kernel_新乡联通案例分享:Jupyter开发环境配置的常用技巧

Jupyter开发环境配置的常用技巧新乡联通网管中心 邢少华Python开发环境中,大部分人使用的是Jupyter,在Jupyter中有几个令人困扰的问题:1. Jupyter的默认打开目录如何修改2. Jupyter默认使用的浏览器如何修改3. 好用的Jupyter插件如何安装4.…

东北大学c语言及程序设计,东大20秋学期《C语言及程序设计》在线平时作业1参考...

20秋学期《C语言及程序设计》在线平时作业1( j- V: Z* f0 i V& k% b, S. ?/ _8 ~1.[单选题] 在C语言中,引用数组元素时,其数组下标的数据类型允许是()。2 6 g, p1 C$ P; B$ _( J附件是答案,核对题目下载4 m1 F; D: R* q; AA.整型常量- _…

mac安装ipython_Mac下安装ipython与jupyter

IPython从Python发展而来,更倾向于科学计算。互联网数据分析更喜欢用。首先切换root用户:sudo su -pip3自动安装ipythonMacBook-Pro:~ root# pip3 install ipython自动安装完成后建立软连接,方便使用MacBook-Pro:bin root# ln -s /Library/Fr…

二叉树 中序遍历 python_LeetCode 105 树 从前序与中序遍历序列构造二叉树(Medium)

17(105) 从前序与中序遍历序列构造二叉树(Medium)描述根据一棵树的前序遍历与中序遍历构造二叉树。注意: 你可以假设树中没有重复的元素。示例例如,给出前序遍历 preorder [3,9,20,15,7] 中序遍历 inorder [9,3,15,20,7]返回如下的二叉树:3/ 9 20/ 1…

c语言删除双向链表重复元素,求一个双向链表的建立,插入删除的c语言程序完整版的,借鉴一下思想,再多说一下就是能运行的那种...

最佳答案//链表的操作编辑//线性表的双向链表存储结构typedef struct DuLNode{ElemType data;struct DuLNode *prior,*next;}DuLNode,*DuLinkList;////带头结点的双向循环链表的基本操作void InitList(DuLinkList L){ /* 产生空的双向循环链表L */L(DuLinkList)malloc(sizeof(D…

华为p10和p10plus区别_华为p10和p10plus哪个好 华为p10与p10plus区别对比【图文】

华为p10与p10plus是华为在2017年的首发旗舰手机,作为颜值与配置都很亮眼的华为p10与p10plus自然成了大众的焦点,当然也就避不可免的用来对比。究竟华为p10和p10plus哪个好?下面小编就来给大家讲讲华为p10与p10plus的区别对比。华为P10与P10 Plus区别对比…

python数学圆周率_Python编程超简单方法算圆周率

我们都知道,圆周率是3.1415926也就是π,但你有没有想过,圆周率是怎么算出来的呢? 这个是德国数学家莱布尼兹发明的算圆周率的方法,公式为:π4(1-1/31/51/71/9-1/11……),其中,分母每…

计算payload长度c语言,C语言0长度数组(可变数组/柔性数组)详解

1 零长度数组概念众所周知, GNU/GCC 在标准的 C/C 基础上做了有实用性的扩展, 零长度数组(Arrays of Length Zero) 就是其中一个知名的扩展.多数情况下, 其应用在变长数组中, 其定义如下struct Packet{ int state; int len; char cData[0]; //这里的0长结构体就为变长结构体提供…

iphone主屏幕动态壁纸_iPhone8怎么设置动态壁纸?iPhone8动态壁纸设置教程

iPhone8怎么设置动态壁纸?朋友们平时想把一些拍摄的动态图片设置iPhone8壁纸,该怎么设置呢?估计有 不少朋友还不知道如何设置, 在这里我就来为大家介绍一下iPhone8设置动态壁纸的教程,一起来看一看吧!iPhone8动态壁纸设置教程首先打开iPhon…

python封装介绍_谈python3的封装

这章给大家介绍,如何封装一个简单的python库首先创建一个以下型式的文件结构rootFile/setup.pyexample_package/__init__.pyexample_module.pyexample_package2/__init__.pyexample_module.py其中的两个__init__.py可以是一个空文件,但是它是导入package…

go语言调用c 的头文件 so,golang 学习(10): 使用go语言调用c语言的so动态库-Go语言中文社区...

一、前言最近在学习go,因为需要调用c语言打包成的so动态库里面的方法,避免自己再去造轮子,所以想直接使用golang调用so,但是参考了其他博客大佬写的,我每一步原封不动的写下来,结果都是一堆错误&#xff0c…

log nginx 客户端请求大小_Nginx日志分析和参数详解

本文档主要介绍Nginx设置日志参数的作用,以及Nginx日志常用分析命令基本大纲:1.Nginx日志记录格式的介绍2.Nginx日志参数详解3.Web服务流量名词介绍4.Nginx日志常用分析命令示范一:Nginx日志记录格式的介绍log_format用来设置日志的记录格式&…

python函数的封装调用_Python封装一个函数来打印到变量

如果我有一个包含大量打印语句的函数: 即. def funA(): print "Hi" print "There" print "Friend" print "!" 我想做的是这样的事情 def main(): ##funA() does not print to screen here a getPrint(funA()) ##where get…

android 开机动画 渐变,[Parallax Animation]实现知乎 Android 客户端启动页视差滚动效果...

前言Parallax Scrolling (视差滚动),是一种常见的动画效果。视差一词来源于天文学,但在日常生活中也有它的身影。在疾驰的动车上看风景时,会发现越是离得近的,相对运动速度越快,而远处的山川河流只是缓慢的移动着&…

js访问对方手机文件夹_求JS大神帮我写个利用JS来实现手机端和PC端访问自动选择样式文件代码...

展开全部现在比较流行的办法是 一个网站2套代码,一套是手机一套pc,在网站首页开e68a84e8a2ad3231313335323631343130323136353331333363353735头写上一段识别各浏览器的判断方法,根据结果引入不同的样式详细判断如下:var browser{…

python可以做计量分析吗_技术分享 - python数据分析(2)——数据特征分析(上)...

1 分布分析 分布分析能揭示数据的分布特征和分布类型。对于定量数据,欲了解其分布形式是对称的还是非对称的,发现某些特大或特小的可疑值,可通过绘制频率分布表、绘制频率分布直方图、绘制茎叶图进行直观地分析;对于定性分类数据&…

android lrc 歌词显示,Android歌词 AndroidLrc歌词

[ti:Android][ar:川畑要][al:0][by:黄病病][00:00.00][00:01.69]Android[00:07.51]歌手:川畑要[00:10.96]作詞:Kaname Kawabata[00:12.64]作曲:UTAKaname Kawabata[00:14.06]BY:黄病病[00:15.80][00:15.66]一際目を引くまるでandroid[00:23.1…

web前端开发技术期末考试_Web前端开发技术期末试题1

绝密★启用前Web前端开发技术期一、单项选择题(本大题共25小题,每小题1分,共25分)1.网页制作工具按照其工作方式可分为( )A.HTML语言和非HTML语言两大类B.DHTML方式和JavaScript方式两大类C.标注型网页制作工具和所见即所得型网页制作工具两大类D.基于Wi…

matlab的7.3版本是什么_乐建工程宝V6.3版本升级说明公告

尊敬的乐建工程宝客户:您好!为了给客户提供更加优质的产品和服务,我司已于2019年11月20日开始乐建工程宝V6.3版本升级服务。目前,Android系统各应用市场已基本审核完毕,iOS系统已上传AppStore,目前苹果官方…

魅族android 版本 6.0下载,flyme6.0内测版

由魅族开发的全新安卓系统flyme6.0系统固件已经到来,相对于Flyme 5系统有了众多改变和提升,全新的智能服务系统,多达400于项全新功能,同时让操作界面更加简洁,易于操作,而系统运行速度也将有所提升&#xf…