(newb alert)
我正在使用Java-WebSocket和json-simple。
使用此问题How to avoid Eclipse warnings when using legacy code without generics?解决put
与JSONObject
的问题后,我现在正在尝试sendToAll
obj
但是我正在} p>
error: method sendToAll in class WebSocketServerBase cannot be applied
to given types;
ws.sendToAll(obj);
^
required: String
found: JSONObject
reason: actual argument JSONObject cannot be converted to String by method
invocation conversion
1 error
我如何sendToAll
obj
?
答案 0 :(得分:1)
obj
是JSONObject
,该方法需要String
。我确信有一些方法可以将您的obj
转换为String
来识别它,但我不知道它是什么。