0
public static void main(String[] args) throws TwitterException, IOException{
    StatusListener listener = new StatusListener(){
        public void onStatus(Status status) {
        System.out.println(status.getUser().getName() + " : " + status.getText());
}
public void onDeletionNotice(StatusDeletionNotice statusDeletionNotice) {}
public void onTrackLimitationNotice(int numberOfLimitedStatuses) {}
public void onException(Exception ex) {
             ex.printStackTrace();
}

我正在使用上面的代码下载流式推文。我得到这个错误。

The type new StatusListener(){} must implement the inherited abstract method StatusListener.onStallWarning(StallWarning)
The type new StatusListener(){} must implement the inherited abstract method StatusListener.onScrubGeo(long, long).

我需要包含任何特定的 jar 文件吗?

4

1 回答 1

1

不需要包含更多的.jar文件,只包含下面的方法

        public void onStallWarning(StallWarning arg0) {
        }

您的代码将成功编译并运行。

希望这可以帮助!!!

于 2015-06-09T13:50:33.533 回答