使用 twitter4j 从 StatusJSONImpl 获取 JSONObject
在 StatusListener 的实现中,我尝试以 JSONObject 的形式获取 Status 对象。 当我执行 System.out.println(status.toString()); 时,在 OnStatust(Status status) 方法中;我意识到状态是 StatusJSONImpl...有没有办法可以将该对象传输到 JSONobject 而无需手动解析它?
谢谢
In my implementation of StatusListener I am trying to get the Status object in a form of JSONObject.
in the OnStatust(Status status) method when i did System.out.println(status.toString()); I realized that the status is StatusJSONImpl... Is there a way I can transfer that object to JSONobject without having to manually parse it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是重写了一些类和一个接口,以允许以 JSON 对象格式提取原始数据。
I just re-wrote some classes and one interface to allow the extraction of raw data in the shape of JSON Object format.