Nov 19
[Tutorial] Twittering from Java with Twitter4J
Really, this is so easy it’s almost not worthy of a blog post. Twitter4J is a tiny library wrapping interaction with Twitter APIs.
Creating a new tweet is as simple as:
Twitter twitter = new Twitter("username","password"); Status status = twitter.update(title);
The Twitter4J page has a series of simple examples covering timelines and direct messages. Great job and thanks to Yusuke Yamamoto, the author.

