- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的MQTTCONECTION类
public class MQTTService extends Service {
private static final String TAG = "MQTTService";
private static boolean hasWifi = false;
private static boolean hasMmobile = false;
private Thread thread;
private ConnectivityManager mConnMan;
private volatile IMqttAsyncClient mqttClient;
private String deviceId;
class MQTTBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
IMqttToken token;
boolean hasConnectivity = false;
boolean hasChanged = false;
NetworkInfo infos[] = mConnMan.getAllNetworkInfo();
for (int i = 0; i < infos.length; i++){
if (infos[i].getTypeName().equalsIgnoreCase("MOBILE")){
if((infos[i].isConnected() != hasMmobile)){
hasChanged = true;
hasMmobile = infos[i].isConnected();
}
Log.d(TAG, infos[i].getTypeName() + " is " + infos[i].isConnected());
} else if ( infos[i].getTypeName().equalsIgnoreCase("WIFI") ){
if((infos[i].isConnected() != hasWifi)){
hasChanged = true;
hasWifi = infos[i].isConnected();
}
Log.d(TAG, infos[i].getTypeName() + " is " + infos[i].isConnected());
}
}
hasConnectivity = hasMmobile || hasWifi;
Log.v(TAG, "hasConn: " + hasConnectivity + " hasChange: " + hasChanged + " - "+(mqttClient == null || !mqttClient.isConnected()));
if (hasConnectivity && hasChanged && (mqttClient == null || !mqttClient.isConnected())) {
//Log.d(TAG, "Llama a la función doConnect");
doConnect();
} else if (!hasConnectivity && mqttClient != null && mqttClient.isConnected()) {
Log.d(TAG, "doDisconnect()");
try {
token = mqttClient.disconnect();
token.waitForCompletion(1000);
} catch (MqttException e) {
e.printStackTrace();
}
}
}
};
public class MQTTBinder extends Binder {
public MQTTService getService(){
return MQTTService.this;
}
}
@Override
public void onCreate() {
IntentFilter intentf = new IntentFilter();
setClientID();
intentf.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
registerReceiver(new MQTTBroadcastReceiver(), new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
mConnMan = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
Log.d(TAG, "onConfigurationChanged()");
android.os.Debug.waitForDebugger();
super.onConfigurationChanged(newConfig);
}
private void setClientID(){
WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wInfo = wifiManager.getConnectionInfo();
deviceId = wInfo.getMacAddress();
if(deviceId == null){
deviceId = MqttAsyncClient.generateClientId();
}
}
private void doConnect(){
IMqttToken token;
MqttConnectOptions options = new MqttConnectOptions();
options.setCleanSession(true);
//StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectNetwork().penaltyLog().build());
try {
mqttClient = new MqttAsyncClient("tcp://192.168.0.9:1883", deviceId, new MemoryPersistence());
token = mqttClient.connect();
token.waitForCompletion(3500);
mqttClient.setCallback(new MqttEventCallback());
token = mqttClient.subscribe("test", 0);
token.waitForCompletion(5000);
token.setActionCallback(new IMqttActionListener() {
@Override
public void onSuccess(IMqttToken asyncActionToken) {
Log.d(TAG, "Si se conecto");
/*String mensaje = "Conchita";
byte[] mensajeB = mensaje.getBytes(UTF_8);
MqttMessage mqttMessage = new MqttMessage(mensajeB);
try {
mqttClient.publish("test", mqttMessage);
} catch (MqttException e) {
e.printStackTrace();
}*/
}
@Override
public void onFailure(IMqttToken asyncActionToken, Throwable exception) {
Log.d(TAG, "Que nel");
}
});
} catch (MqttSecurityException e) {
e.printStackTrace();
} catch (MqttException e) {
switch (e.getReasonCode()) {
case MqttException.REASON_CODE_BROKER_UNAVAILABLE:
Log.d(TAG, "The broker was not available to handle the request.");
break;
case MqttException.REASON_CODE_CLIENT_ALREADY_DISCONNECTED:
Log.d(TAG, "The client is already disconnected.");
break;
case MqttException.REASON_CODE_CLIENT_CLOSED:
Log.d(TAG, "The client is closed - no operations are permitted on the client in this state.");
break;
case MqttException.REASON_CODE_CLIENT_DISCONNECT_PROHIBITED:
Log.d(TAG, "Thrown when an attempt to call MqttClient.disconnect() has been made from within a method on MqttCallback.");
break;
case MqttException.REASON_CODE_CLIENT_DISCONNECTING:
Log.d(TAG, "The client is currently disconnecting and cannot accept any new work.");
break;
case MqttException.REASON_CODE_CLIENT_EXCEPTION:
Log.d(TAG, "Client encountered an exception.");
System.out.println("Cause of Exception: "
+ e.getCause());
break;
case MqttException.REASON_CODE_CLIENT_NOT_CONNECTED:
Log.d(TAG, "The client is not connected to the server.");
break;
case MqttException.REASON_CODE_CLIENT_TIMEOUT:
Log.d(TAG, "Client timed out while waiting for a response from the server.");
break;
case MqttException.REASON_CODE_CONNECT_IN_PROGRESS:
Log.d(TAG, "A connect operation in already in progress, only one connect can happen at a time.");
break;
case MqttException.REASON_CODE_CONNECTION_LOST:
Log.d(TAG, "The client has been unexpectedly disconnected from the server.");
break;
case MqttException.REASON_CODE_DISCONNECTED_BUFFER_FULL:
Log.d(TAG, "The Client has attempted to publish a message whilst in the 'resting' / ");
break;
case MqttException.REASON_CODE_FAILED_AUTHENTICATION:
Log.d(TAG, "Client encountered an exception.");
break; //
case MqttException.REASON_CODE_INVALID_CLIENT_ID:
Log.d(TAG, "The server has rejected the supplied client ID");
break;
case MqttException.REASON_CODE_INVALID_MESSAGE:
Log.d(TAG, "Protocol error: the message was not recognized as a valid MQTT packet.");
break;
case MqttException.REASON_CODE_INVALID_PROTOCOL_VERSION:
Log.d(TAG, "The protocol version requested is not supported by the server.");
break;
case MqttException.REASON_CODE_MAX_INFLIGHT:
Log.d(TAG, "A request has been made to send a message but the maximum number of inflight messages has already been reached.");
break;
case MqttException.REASON_CODE_NO_MESSAGE_IDS_AVAILABLE:
Log.d(TAG, "Internal error, caused by no new message IDs being available.");
break;
case MqttException.REASON_CODE_NOT_AUTHORIZED:
Log.d(TAG, "ot authorized to perform the requested operation");
break;//--
case MqttException.REASON_CODE_SERVER_CONNECT_ERROR:
Log.d(TAG, "Unable to connect to server");
break;
case MqttException.REASON_CODE_SOCKET_FACTORY_MISMATCH:
Log.d(TAG, "Server URI and supplied SocketFactory do not match.");
break;
case MqttException.REASON_CODE_SSL_CONFIG_ERROR:
Log.d(TAG, "SSL configuration error.");
break;
case MqttException.REASON_CODE_SUBSCRIBE_FAILED:
Log.d(TAG, "Error from subscribe - returned from the server.");
break;
case MqttException. REASON_CODE_TOKEN_INUSE:
Log.d(TAG, "A request has been made to use a token that is already associated with another action.");
break;
case MqttException.REASON_CODE_UNEXPECTED_ERROR:
Log.d(TAG, "An unexpected error has occurred.");
break;//--
case MqttException.REASON_CODE_WRITE_TIMEOUT:
Log.d(TAG, "Client timed out while waiting to write messages to the server.");
break;//--
/*case MqttException.REASON_CODE_SERVER_CONNECT_ERROR:
Log.d(TAG, "c" +e.getMessage());
e.printStackTrace();
break;
case MqttException.REASON_CODE_FAILED_AUTHENTICATION:
Intent i = new Intent("RAISEALLARM");
i.putExtra("ALLARM", e);
Log.d(TAG, "b"+ e.getMessage());
break;*/
default:
Log.e(TAG, "a_" + e.getMessage());
}
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.v(TAG, "onStartCommand()");
return START_STICKY;
}
private class MqttEventCallback implements MqttCallback {
@Override
public void connectionLost(Throwable arg0) {
}
@Override
public void deliveryComplete(IMqttDeliveryToken arg0) {
}
@Override
@SuppressLint("NewApi")
public void messageArrived(String topic, final MqttMessage msg) throws Exception {
Log.i(TAG, "Message arrived from topic" + topic);
Handler h = new Handler(getMainLooper());
h.post(new Runnable() {
@Override
public void run() {
Intent launchA = new Intent(MQTTService.this, MainActivity.class);
launchA.putExtra("message", msg.getPayload());
//TODO write somethinkg that has some sense
if(Build.VERSION.SDK_INT >= 11){
launchA.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_REORDER_TO_FRONT|Intent.FLAG_ACTIVITY_NO_ANIMATION);
} /*else {
launchA.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}*/
startActivity(launchA);
Toast.makeText(getApplicationContext(), "MQTT Message:\n" + new String(msg.getPayload()), Toast.LENGTH_SHORT).show();
}
});
}
}
public String getThread(){
return Long.valueOf(thread.getId()).toString();
}
@Override
public IBinder onBind(Intent intent) {
Log.i(TAG, "onBind called");
return null;
}
}
这是我的MainActivity:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent mymqttservice_intent = new Intent(this, MQTTService.class);
startService(mymqttservice_intent);
}
}
和 list 文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.serviciomqtt_2">
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:theme="@style/AppTheme">
<service
android:enabled="true"
android:name="MQTTService"
/>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Iam也使用API 29,MOsquitto mqtt代理处于 Activity 状态
最佳答案
代替:
<uses-permission android:name="android.permission.ACCESS_INTERNET"/>
和:
<uses-permission android:name="android.permission.INTERNET"/>
关于java - MQTT服务错误 “socket failed: EPERM”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62722052/
我们正在创建一个 n 层 Silverlight LOB 应用程序,并且正在考虑使用 .NET RIA 服务。我们不清楚这与我们当前的 WCF 服务 API 的关系在哪里。我们当前的架构是: 银光
上下文:我在celery + rabbitmq堆栈上有一个主工作系统。 系统已docker化(此处未提供worker服务) version: '2' services: rabbit:
我是 Windows Azure 新手,我正在尝试将我的 Web 应用程序部署到 Windows Azure。在我的应用程序中,我使用了一些 Web 服务,现在我想知道如何在 Windows Azur
因此,根据我对服务的了解,自定义对象似乎是写入服务以返回数据的方式。如果我正在编写将用于 1) 填充数据库或 2) 为网站提供信息的服务,是否有返回数据集/数据表而不是包含所有这些的自定义对象列表的用
我在 google 和 stackoverflow 上都找过答案,但似乎找不到。我正在尝试将 azure 实验的输出获取到应用程序。我使用 ibuildapp 和谷歌表单制作了该应用程序。如何使用 g
我不小心删除了 kubernetes svc: service "kubernetes" deleted 使用: kubectl delete svc --all 我该怎么办?我只是想删除服务,以便
我正在努力确定解决网络服务问题的最有效方法。 我的情况:我正在开发一个 Android 应用程序,它通过 Web 服务从 mysql 数据库(在我自己的服务器 PC 上)存储和检索数据。用户按下提交按
我一直在翻阅 Android 文档,我很好奇。什么时候绑定(bind)服务而不是不绑定(bind)服务?它提供了哪些优点/限制? 最佳答案 When would you bind a service
我试图从架构的角度理解 hive,我指的是 Tom White 关于 Hadoop 的书。 我遇到了以下关于配置单元的术语:Hive Services、hiveserver2、metastore 等。
我的问题:安装服务后我无法导航到基地址,因为服务不会继续运行(立即停止)。我需要在服务器或我的机器上做些什么才能使 baseAddress 有效吗? 背景:我正在尝试学习如何使用 Windows 服务
我正在努力就 Web 服务的正确组织做出决定。我应该有多个 ASMX 来代表 Web 服务中的不同功能,还是应该有一个 ASMX? 如果我有多个 ASMX,这不构成多个 Web 服务吗? 如果我只有一
我正在从事一个在 azure 平台上提供休息服务的项目。该服务由 iPhone 客户端使用,这是选择其余方法的重要原因之一。 我们希望通过 AccessControlService(ACS) 并使用
我是 Ionic 新手,正在使用 Ionic 3.9.2 我有几个终端命令来为我的 ionic 应用程序提供服务,但是,我没有发现这两个命令之间有任何区别。 ionic serve 和 ionic s
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
作为项目的一部分,我期待着问这个问题。我过去有开发和使用 Web 服务的经验,并且非常熟悉这些服务。但是,有人告诉我,作为下一个项目的一部分,我将需要使用“安全”的 Web 服务。您能否提供一些见解,
我浏览了很多关于这个问题的信息,但找不到解决方案。这里的问题是,我想使用 Apache Cordova 和 Visual Studio 连接到 wcf。因此,如果有人找到合适的工作解决方案,请发布链接
我在 Windows 服务中托管了一个 WCF(从 MS 网站示例中选取),我可以使用 SOAP UI 访问和调用方法。但是,当我尝试使用 jquery 从 Web 应用程序调用相同的方法时,我不断收
我们构建了一个 Android 应用程序,它从 Android 向我的 PHP 服务器发送 HTTP 请求。作为响应,Web 服务将 JSON 对象发送到 Android 应用程序以显示结果。 就像其
我想在 android 应用程序中调用 soap web 服务,它需要一个枚举值作为参数,它是一个标志枚举。如何从 Android 应用程序将一些值作为标志枚举传递给此 Web 服务方法? 我使用 K
我尝试在模拟器上安装 Google Play。我已按照 Google Dev Site 中的说明进行操作. 使用 ADV 管理器似乎没问题,设备的目标是 Google API 版本 22,但是当我运行
我是一名优秀的程序员,十分优秀!