public static void main(String[] args) {
String access_token = args[0];
Weibo weibo = new Weibo();
weibo.setToken(access_token);
Comments cm = new Comments();
try {
CommentWapper comment = cm.getCommentMentions();
for(Comment c : comment.getComments()){
Log.logInfo(c.toString());
}
System.out.println(comment.getNextCursor());
System.out.println(comment.getPreviousCursor());