我使用java amqp lib(implementation 'com.rabbitmq:amqp-client:5.7.1'
)制作了一个简单的测试应用程序,用于阅读RabbitMQ队列。
但我有麻烦时,连接到我的兔子服务器,由于Android权限(套接字)
以下是错误消息:
W/系统错误:java.net.SocketException:套接字失败:EPERM(不允许操作)
我尝试过将android.permission.INTERNET
添加到清单中,但没有成功。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.androidwebsocket">
<uses-permission android:name="android.permission.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:theme="@style/AppTheme">
<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>
我错过了什么?
编辑
根据请求,以下是完整的错误堆栈跟踪:https://pastebin.com/WAh2B4rP
以及触发此错误的代码:
ConnectionFactory factory = new ConnectionFactory();
factory.setUsername("myuser");
factory.setPassword("mypass");
factory.setVirtualHost("/");
factory.setHost("myhost.io");
factory.setPort(5672);
connection = factory.newConnection(); //Error triggers here
channel = connection.createChannel();
1条答案
按热度按时间bwleehnv1#
我失踪了
应该提到的是,连接必须在后台线程中运行,否则Android将阻止它。
还有:
按照java.net.SocketException: socket failed: EPERM (Operation not permitted)中的建议从模拟器中卸载应用程序