Reputation: 913
I'm trying to use the following stream example for twitter4J:
package twitter4j.examples.stream;
import twitter4j.*;
import java.util.ArrayList;
import java.util.Arrays;
/**
* <p>This is a code example of Twitter4J Streaming API - filter method support.<br>
* Usage: java twitter4j.examples.stream.PrintFilterStream [follow(comma separated numerical user ids)] [track(comma separated filter terms)]<br>
* </p>
*
* @author Yusuke Yamamoto - yusuke at mac.com
*/
public final class PrintFilterStream {
/**
* Main entry of this application.
*
* @param args follow(comma separated user ids) track(comma separated filter terms)
* @throws TwitterException when Twitter service or network is unavailable
*/
public static void main(String[] args) throws TwitterException {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.PrintFilterStream [follow(comma separated numerical user ids)] [track(comma separated filter terms)]");
System.exit(-1);
}
TwitterStream twitterStream = new TwitterStreamFactory().getInstance().addListener(new StatusListener() {
@Override
public void onStatus(Status status) {
System.out.println("@" + status.getUser().getScreenName() + " - " + status.getText());
}
@Override
public void onDeletionNotice(StatusDeletionNotice statusDeletionNotice) {
System.out.println("Got a status deletion notice id:" + statusDeletionNotice.getStatusId());
}
@Override
public void onTrackLimitationNotice(int numberOfLimitedStatuses) {
System.out.println("Got track limitation notice:" + numberOfLimitedStatuses);
}
@Override
public void onScrubGeo(long userId, long upToStatusId) {
System.out.println("Got scrub_geo event userId:" + userId + " upToStatusId:" + upToStatusId);
}
@Override
public void onStallWarning(StallWarning warning) {
System.out.println("Got stall warning:" + warning);
}
@Override
public void onException(Exception ex) {
ex.printStackTrace();
}
});
ArrayList<Long> follow = new ArrayList<Long>();
ArrayList<String> track = new ArrayList<String>();
for (String arg : args) {
if (isNumericalArgument(arg)) {
for (String id : arg.split(",")) {
follow.add(Long.parseLong(id));
}
} else {
track.addAll(Arrays.asList(arg.split(",")));
}
}
long[] followArray = new long[follow.size()];
for (int i = 0; i < follow.size(); i++) {
followArray[i] = follow.get(i);
}
String[] trackArray = track.toArray(new String[track.size()]);
// filter() method internally creates a thread which manipulates TwitterStream and calls these adequate listener methods continuously.
twitterStream.filter(new FilterQuery(0, followArray, trackArray));
}
private static boolean isNumericalArgument(String argument) {
String args[] = argument.split(",");
boolean isNumericalArgument = true;
for (String arg : args) {
try {
Integer.parseInt(arg);
} catch (NumberFormatException nfe) {
isNumericalArgument = false;
break;
}
}
return isNumericalArgument;
}
}
at this part
TwitterStream twitterStream = new TwitterStreamFactory().getInstance().addListener(new StatusListener() {
But my IDE never offers me any imports for TwitterStream nor TwitterStreamFactory I understand that both should be in the general package of twitter4j which I have imported with gradle into this spring application.
Also the IDE keeps offering me to import : org.apache.logging.log4j.status.StatusListener
or ch.qos.logback.core.status.StatusListener
But never StatusListener
How can I overcome this?
Upvotes: 1
Views: 386
Reputation: 632
I don't find it mentioned in the documentation, but it seems that you need to import the twitter4j-stream
artifact rather than the twitter4j-core
one.
Replacing with this in my POM did the trick:
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-stream</artifactId>
<version>4.0.7</version>
</dependency>
The latter is included by the former, but I see in their examples project that they include both anyways.
You can see all available artifacts in Maven Central.
Upvotes: 1