0

私は自分のWebSocketサーバーに接続しようとしています:

ws = net().createWebSocket("ws://192.168.0.3:8000/sample", this);

mvn test -Pjavaでテストすると正常に動作します

しかし、Google Nexus S (アイスクリーム サンドイッチの下) でロードすると、次のようになります。

E/AndroidRuntime( 4321): FATAL EXCEPTION: GLThread 352
E/AndroidRuntime( 4321): java.lang.UnsupportedOperationException
E/AndroidRuntime( 4321):        at playn.core.NetImpl.createWebSocket(NetImpl.java:27) 
E/AndroidRuntime( 4321):        at com.github.dawicorti.qrcomsample.core.CommunicationScreen.<init>(CommunicationScreen.java:34)
E/AndroidRuntime( 4321):        at com.github.dawicorti.qrcomsample.core.QRComSample.init(QRComSample.java:12)
E/AndroidRuntime( 4321):        at playn.android.AndroidPlatform.run(AndroidPlatform.java:170)
E/AndroidRuntime( 4321):        at playn.core.PlayN.run(PlayN.java:47)
E/AndroidRuntime( 4321):        at com.github.dawicorti.qrcomsample.android.QRComSampleActivity.main(QRComSampleActivity.java:13)
E/AndroidRuntime( 4321):        at playn.android.GameViewGL$3.run(GameViewGL.java:94)
E/AndroidRuntime( 4321):        at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1462)
E/AndroidRuntime( 4321):        at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1240)
W/ActivityManager(  249):   Force finishing activity com.github.dawicorti.qrcomsample.android/.QRComSampleActivity
4

1 に答える 1

0

WebSocket は (2013 年 3 月現在)、Android バックエンドではサポートされていません。Java および HTML バックエンドでのみサポートされています。

プラットフォームのステータス ページを更新します。

于 2013-03-07T23:32:00.510 に答える