public static void main(String[] args) {
System.setProperty("weibo4j.oauth.consumerKey", Weibo.CONSUMER_KEY);
System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET);
try {
Weibo weibo = getWeibo(true,args);
Status status = weibo.updateStatus("新增微博信息");
Thread.sleep(1000);
String sid = status.getId()+"";
System.out.println(sid + " : "+ status.getText()+" "+status.getCreatedAt());
Comment comment = weibo.updateComment("发表评论", sid, null);
System.out.println(comment.getId() + " : " + comment.getText() + " " + comment.getCreatedAt());