gpt4 book ai didi

java - 使用 TwitterStream 对推文进行采样是否正常,如 Twitter4J 代码示例中所示,我主要得到的只是问号作为用户名和状态?

转载 作者:行者123 更新时间:2023-12-01 10:34:47 26 4
gpt4 key购买 nike

我使用了 Twitter4j 中“代码示例”部分中的代码:

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();
}
};
TwitterStream twitterStream = new TwitterStreamFactory().getInstance();
twitterStream.addListener(listener);
// sample() method internally creates a thread which manipulates TwitterStream and calls these adequate listener methods continuously.
twitterStream.sample();
}

如您所见,上面的代码中有一个 println,位于方法“onStatus”内。下图显示了我主要从该代码中得到的内容。正常吗?

question marks...question marks everywhere

事实上,我只过滤用户名中没有问号的用户的状态,我几乎什么也没有得到。此外,我还应该过滤位置公开的用户。关于这一点,我还想问有什么区别:

user.isGeoEnabled()

user.getLocation() != ""

最佳答案

您将得到的响应采用 UTF-8 编码 https://dev.twitter.com/tags/utf-8

如果您查看输出中的某些帐户,它们包含非西欧字符 https://twitter.com/tomokichi_koyo 。这些正在破坏输出。

尝试写入文件并使用支持 UTF-8 的编辑器打开。关于将 java 和操作系统设置为默认 UTF-8 有多种答案,但您需要寻找特定的组合 https://stackoverflow.com/search?q=windows+console+java+utf-8

关于java - 使用 TwitterStream 对推文进行采样是否正常,如 Twitter4J 代码示例中所示,我主要得到的只是问号作为用户名和状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34829739/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com