Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のハッシュタグを検索すると、そのハッシュタグを含む最近のツイートの結果が表示されます。これが私がストリーミングしたいものなので、このハッシュタグが付いた新しいツイートがあればわかります。
Twitter twitter = new TwitterFactory().getInstance(); try { QueryResult result = twitter.search(new Query("#myhashtag")); } catch (TwitterException te) { te.printStackTrace(); }
ソース
#シンボルをエスケープする必要があるかもしれません
#