无法通过方法调用转换将JSONObject转换为String

时间:2013-07-20 23:31:39

标签: java json websocket type-conversion invocation

(newb alert)

我正在使用Java-WebSocketjson-simple

使用此问题How to avoid Eclipse warnings when using legacy code without generics?解决putJSONObject的问题后,我现在正在尝试sendToAll obj但是我正在

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

1 个答案:

答案 0 :(得分:1)

objJSONObject,该方法需要String。我确信有一些方法可以将您的obj转换为String来识别它,但我不知道它是什么。