1

我正在尝试创建一个带有特殊标签的推文界面,并且我想在推文中添加个人资料照片,有没有办法使用 twitter4j 获取 Twitter 个人资料照片?

4

2 回答 2

3

浏览以下代码。

Assume that the Twitter object is mytTwitter
*get the user from the twitter object

User user = mytTwitter.showUser(mytTwitter.getid());

*get the profile image URL

URL url = user.getProfileImageURL();


*create Image icon

ImageIcon img = new ImageIcon(url);

*set the JLabel icon to be the ImageIcon

Jlabel1.setIcon(img);
于 2013-08-05T10:46:49.223 回答
2

是的你可以。您必须获得一个状态,然后:

status.getUser().getProfileImageURL(); //returns a string which is profile image url

详细用法:

getProfileImageURL()

twitter4j Javadoc

于 2013-08-05T10:42:20.547 回答